records(); $fieldsToShow = $this->fieldsToShow(); if($records) { $result = "\n"; } else { $result = "

" . sprintf( _t('SideReport.REPEMPTY','The %s report is empty.',PR_MEDIUM,'%s is a report title'), $this->title() ) . "

"; } return $result; } function setParams($params) { $this->params = $params; } // if your batchaction has parameters, return a fieldset here function getParameterFields() { return false; } function canView() { return true; } } /** * Content side-report listing empty pages * @package cms * @subpackage content */ class SideReport_EmptyPages extends SideReport { function title() { return _t('SideReport.EMPTYPAGES',"Pages with no content"); } function group() { return "Content reports"; } function sort() { return 100; } function records($params = null) { return DataObject::get("SiteTree", "\"Content\" = '' OR \"Content\" IS NULL OR \"Content\" LIKE '

' OR \"Content\" LIKE '

 

'", '"Title"'); } function fieldsToShow() { return array( "Title" => array("NestedTitle", array("2")), ); } } /** * Content side-report listing recently editing pages. * @package cms * @subpackage content */ class SideReport_RecentlyEdited extends SideReport { function title() { return _t('SideReport.LAST2WEEKS',"Pages edited in the last 2 weeks"); } function group() { return "Content reports"; } function sort() { return 200; } function records($params = null) { $threshold = strtotime('-14 days', SS_Datetime::now()->Format('U')); return DataObject::get("SiteTree", "\"SiteTree\".\"LastEdited\" > '".date("Y-m-d H:i:s", $threshold)."'", "\"SiteTree\".\"LastEdited\" DESC"); } function fieldsToShow() { return array( "Title" => array("NestedTitle", array("2")), ); } } class SideReport_ToDo extends SideReport { function title() { return _t('SideReport.TODO',"Pages with To Do items"); } function group() { return "Content reports"; } function sort() { return 0; } function records($params = null) { return DataObject::get("SiteTree", "\"SiteTree\".\"ToDo\" IS NOT NULL AND \"SiteTree\".\"ToDo\" <> ''", "\"SiteTree\".\"LastEdited\" DESC"); } function fieldsToShow() { return array( "Title" => array( "source" => array("NestedTitle", array("2")), "link" => true, ), "ToDo" => array( "source" => "ToDo", "newline" => true, ), ); } } /** * Lists all pages with either broken page or file links. * * @package cms * @subpackage content */ class SideReport_BrokenLinks extends SideReport { public function title() { return _t('SideReport.BROKENPAGEFILELINKS', 'Broken Page & File Links'); } function group() { return "Broken links reports"; } public function records() { return DataObject::get('SiteTree', '"HasBrokenLink" = 1 OR "HasBrokenFile" = 1'); } public function fieldsToShow() { return array( 'Title' => array('NestedTitle', array(2)), ); } }