records();
$fieldsToShow = $this->fieldsToShow();
if($records) {
$result = "
class\">\n";
foreach($records as $record) {
$result .= "- \n";
foreach($fieldsToShow as $fieldTitle => $fieldSource) {
$fieldName = ereg_replace('[^A-Za-z0-9]+','',$fieldTitle);
if(is_string($fieldSource)) {
$val = $record->$fieldSource;
} else {
$val = $record->val($fieldSource[0], $fieldSource[1]);
}
$result .= "ID\">$val";
}
$result .= "\n
\n";
}
$result .= "
\n";
} else {
$result = 'The '.$this->title().' report is empty.';
}
return $result;
}
}
class SideReport_EmptyPages extends SideReport {
function title() {
return "Empty pages";
}
function records() {
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")),
);
}
}
class SideReport_RecentlyEdited extends SideReport {
function title() {
return "Pages edited in the last 2 weeks";
}
function records() {
return DataObject::get("SiteTree", "`SiteTree`.LastEdited > NOW() - INTERVAL 14 DAY", "`SiteTree`.`LastEdited` DESC");
}
function fieldsToShow() {
return array(
"Title" => array("NestedTitle", array("2")),
);
}
}
?>