2013-07-31 10:30:58 +02:00
|
|
|
<?php
|
2016-07-22 01:32:32 +02:00
|
|
|
|
|
|
|
namespace SilverStripe\CMS\Controllers;
|
|
|
|
|
2016-08-23 04:36:06 +02:00
|
|
|
use SilverStripe\View\Requirements;
|
|
|
|
use SilverStripe\Core\ClassInfo;
|
|
|
|
use SilverStripe\Control\Director;
|
|
|
|
use SilverStripe\Core\Extension;
|
2016-07-22 01:32:32 +02:00
|
|
|
|
2013-07-31 10:30:58 +02:00
|
|
|
/**
|
|
|
|
* Extension to include custom page icons
|
|
|
|
*/
|
2017-01-25 21:59:25 +01:00
|
|
|
class LeftAndMainPageIconsExtension extends Extension
|
|
|
|
{
|
|
|
|
|
|
|
|
public function init()
|
|
|
|
{
|
|
|
|
Requirements::customCSS($this->generatePageIconsCss());
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Include CSS for page icons. We're not using the JSTree 'types' option
|
|
|
|
* because it causes too much performance overhead just to add some icons.
|
|
|
|
*
|
|
|
|
* @return string CSS
|
|
|
|
*/
|
|
|
|
public function generatePageIconsCss()
|
|
|
|
{
|
|
|
|
$css = '';
|
|
|
|
|
|
|
|
$classes = ClassInfo::subclassesFor('SilverStripe\\CMS\\Model\\SiteTree');
|
|
|
|
foreach ($classes as $class) {
|
|
|
|
$obj = singleton($class);
|
|
|
|
$iconSpec = $obj->stat('icon');
|
|
|
|
|
|
|
|
if (!$iconSpec) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Legacy support: We no longer need separate icon definitions for folders etc.
|
|
|
|
$iconFile = (is_array($iconSpec)) ? $iconSpec[0] : $iconSpec;
|
|
|
|
|
|
|
|
// Legacy support: Add file extension if none exists
|
|
|
|
if (!pathinfo($iconFile, PATHINFO_EXTENSION)) {
|
|
|
|
$iconFile .= '-file.gif';
|
|
|
|
}
|
|
|
|
|
|
|
|
$selector = ".page-icon.class-$class, li.class-$class > a .jstree-pageicon";
|
|
|
|
|
|
|
|
if (Director::fileExists($iconFile)) {
|
|
|
|
$css .= "$selector { background: transparent url('$iconFile') 0 0 no-repeat; }\n";
|
|
|
|
} else {
|
|
|
|
// Support for more sophisticated rules, e.g. sprited icons
|
|
|
|
$css .= "$selector { $iconFile }\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $css;
|
|
|
|
}
|
2016-03-08 21:50:55 +01:00
|
|
|
}
|