mirror of
https://github.com/silverstripe/silverstripe-reports
synced 2024-10-22 11:05:53 +02:00
1b5c8ee6a8
(merged from branches/gsoc) git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/cms/trunk@41923 467b73ca-7a2a-4603-9d3b-597d59a354a9
70 lines
1.8 KiB
PHP
70 lines
1.8 KiB
PHP
<?php
|
|
|
|
class StatisticsAdmin extends LeftAndMain {
|
|
static $tree_class = "SiteTree";
|
|
static $subitem_class = "Member";
|
|
|
|
/**
|
|
* Initialisation method called before accessing any functionality that BulkLoaderAdmin has to offer
|
|
*/
|
|
public function init() {
|
|
parent::init();
|
|
|
|
Requirements::javascript("jsparty/plotr.js");
|
|
Requirements::javascript("jsparty/tablekit.js");
|
|
|
|
Requirements::css("cms/css/StatisticsAdmin.css");
|
|
}
|
|
|
|
public function Link($action=null) {
|
|
return "admin/statistics/$action";
|
|
}
|
|
|
|
/**
|
|
* Form that will be shown when we open one of the items
|
|
*/
|
|
public function EditForm() {
|
|
|
|
}
|
|
|
|
function getSiteTreeFor($className) {
|
|
$obj = singleton($className);
|
|
$obj->markPartialTree();
|
|
if($p = $this->currentPage()) $obj->markToExpose($p);
|
|
|
|
// getChildrenAsUL is a flexible and complex way of traversing the tree
|
|
$siteTree = $obj->getChildrenAsUL("", '
|
|
"<li id=\"record-$child->ID\" class=\"" . $child->CMSTreeClasses($extraArg) . "\">" .
|
|
"<a href=\"" . Director::link(substr($extraArg->Link(),0,-1), "show", $child->ID) . "\" " . (($child->canEdit() || $child->canAddChildren()) ? "" : "class=\"disabled\"") . " title=\"Page type: ".$child->class."\" >" .
|
|
($child->TreeTitle()) .
|
|
"</a>"
|
|
'
|
|
,$this, true);
|
|
|
|
// Wrap the root if needs be.
|
|
|
|
$rootLink = $this->Link() . '0';
|
|
$siteTree = "<ul id=\"sitetree\" class=\"tree unformatted\"><li id=\"record-0\" class=\"Root nodelete\"><a href=\"$rootLink\">Pages</a>"
|
|
. $siteTree . "</li></ul>";
|
|
|
|
|
|
return $siteTree;
|
|
}
|
|
|
|
public function SiteTreeAsUL() {
|
|
return $this->getSiteTreeFor("SiteTree");
|
|
}
|
|
|
|
function UserCount($date = null) {
|
|
$allUsers = DataObject::get('Member');
|
|
return $allUsers->TotalItems();
|
|
}
|
|
|
|
function UserTableRecords() {
|
|
return DataObject::get('Member');
|
|
}
|
|
|
|
}
|
|
|
|
?>
|