1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
use SilverStripe\Reports\Report; |
4
|
|
|
use DNADesign\Elemental\Models\BaseElement; |
5
|
|
|
use SilverStripe\Core\ClassInfo; |
6
|
|
|
use SilverStripe\Core\Injector\Injector; |
7
|
|
|
use SilverStripe\ORM\ArrayList; |
8
|
|
|
use SilverStripe\View\ArrayData; |
9
|
|
|
use SilverStripe\Core\Convert; |
10
|
|
|
|
11
|
|
|
class ElementUseReport extends Report |
|
|
|
|
12
|
|
|
{ |
13
|
|
|
protected $title = 'Content Blocks in Use'; |
14
|
|
|
|
15
|
|
|
protected $description = 'Show what Content Blocks are being used.'; |
16
|
|
|
|
17
|
|
|
public function getCount($params = array()) |
18
|
|
|
{ |
19
|
|
|
return BaseElement::get()->count(); |
20
|
|
|
} |
21
|
|
|
|
22
|
|
|
public function sourceRecords($params = []) |
23
|
|
|
{ |
24
|
|
|
if (empty($params)) { |
25
|
|
|
$classes = ClassInfo::subclassesFor(BaseElement::class); |
26
|
|
|
$output = new ArrayList(); |
27
|
|
|
|
28
|
|
|
foreach ($classes as $class) { |
29
|
|
|
if ($class === BaseElement::class) { |
30
|
|
|
continue; |
31
|
|
|
} |
32
|
|
|
|
33
|
|
|
$inst = Injector::inst()->create($class); |
34
|
|
|
|
35
|
|
|
$output->push(new ArrayData([ |
36
|
|
|
'Icon' => $inst->getIcon(), |
37
|
|
|
'Title' => $inst->getTypeNice(), |
38
|
|
|
'ClassName' => $inst->sanitiseClassName($class), |
39
|
|
|
'Total' => $class::get()->count() |
40
|
|
|
])); |
41
|
|
|
} |
42
|
|
|
|
43
|
|
|
return $output; |
44
|
|
|
} else if (isset($params['ClassName'])) { |
45
|
|
|
$convertClass = Injector::inst()->create(BaseElement::class)->unsanitiseClassName($params['ClassName']); |
46
|
|
|
|
47
|
|
|
if (ClassInfo::exists($convertClass)) { |
48
|
|
|
return $convertClass::get()->sort('Title', 'ASC'); |
49
|
|
|
} else { |
|
|
|
|
50
|
|
|
|
51
|
|
|
} |
52
|
|
|
} |
53
|
|
|
} |
54
|
|
|
|
55
|
|
|
public function columns() |
56
|
|
|
{ |
57
|
|
|
$params = $this->params; |
|
|
|
|
58
|
|
|
|
59
|
|
|
if (empty($params)) { |
60
|
|
|
return [ |
61
|
|
|
'Icon' => [ |
62
|
|
|
'title' => '' |
63
|
|
|
], |
64
|
|
|
'Title' => [ |
65
|
|
|
'title' => _t(__CLASS__.'.Title', 'Content Type') |
66
|
|
|
], |
67
|
|
|
'Total' => [ |
68
|
|
|
'title' => _t(__CLASS__.'.Total', 'Total'), |
69
|
|
|
'link' => function($value, $item) { |
70
|
|
|
return sprintf( |
71
|
|
|
'<a class="grid-field__link" href="%s" title="%s">%s</a>', |
72
|
|
|
Convert::raw2att($this->getLink('?filters[ClassName]='. $item->ClassName)), |
73
|
|
|
Convert::raw2att($value), |
|
|
|
|
74
|
|
|
Convert::raw2xml($value) |
75
|
|
|
); |
76
|
|
|
} |
77
|
|
|
] |
78
|
|
|
]; |
79
|
|
|
} else { |
80
|
|
|
return [ |
81
|
|
|
'EditorPreview' => [ |
82
|
|
|
'title' => '' |
83
|
|
|
], |
84
|
|
|
'PageTitle' => [ |
85
|
|
|
'title' => _t(__CLASS__.'.Page', 'Page'), |
86
|
|
|
'link' => true |
87
|
|
|
] |
88
|
|
|
]; |
89
|
|
|
} |
90
|
|
|
} |
91
|
|
|
} |
92
|
|
|
|
You can fix this by adding a namespace to your class:
When choosing a vendor namespace, try to pick something that is not too generic to avoid conflicts with other libraries.