mirror of
https://github.com/silverstripe/silverstripe-cms
synced 2024-10-22 08:05:56 +02:00
51 lines
1.0 KiB
PHP
51 lines
1.0 KiB
PHP
<?php
|
|
|
|
namespace SilverStripe\CMS\Reports;
|
|
|
|
use SilverStripe\CMS\Model\RedirectorPage;
|
|
use SilverStripe\CMS\Model\SiteTree;
|
|
use SilverStripe\ORM\DataList;
|
|
use SilverStripe\Reports\Report;
|
|
|
|
class EmptyPagesReport extends Report
|
|
{
|
|
public function title()
|
|
{
|
|
return _t(__CLASS__.'.EMPTYPAGES', "Pages without content");
|
|
}
|
|
|
|
public function group()
|
|
{
|
|
return _t(__CLASS__.'.ContentGroupTitle', "Content reports");
|
|
}
|
|
|
|
public function sort()
|
|
{
|
|
return 100;
|
|
}
|
|
|
|
/**
|
|
* Gets the source records
|
|
*
|
|
* @param array $params
|
|
* @return DataList<SiteTree>
|
|
*/
|
|
public function sourceRecords($params = null)
|
|
{
|
|
return SiteTree::get()
|
|
->exclude('ClassName', RedirectorPage::class)
|
|
->filter('Content', [null, '', '<p></p>', '<p> </p>'])
|
|
->sort('Title');
|
|
}
|
|
|
|
public function columns()
|
|
{
|
|
return [
|
|
"Title" => [
|
|
"title" => "Title",
|
|
"link" => true,
|
|
],
|
|
];
|
|
}
|
|
}
|