mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
e893fc4c51
Enhancement add accessibility info to page number Enhancement new font icons added, improve trash icon and increase icon size of close Enhancement improve title of gridfield search trigger Enhancement add title to button to open gridfield search and improve gridfield search styles API Shortcode fails if no parent API JQuery-UI classes removed Enhancement centre actions tabs within dropup in more-actions Enhancement fix IE input height issue and fix for safari of icons in buttons with hidden text (e.g. pagination) Enhancement only show external link on hover
118 lines
2.6 KiB
PHP
118 lines
2.6 KiB
PHP
<?php
|
|
|
|
namespace SilverStripe\Admin;
|
|
|
|
use SilverStripe\Core\Convert;
|
|
use SilverStripe\Core\Object;
|
|
use SilverStripe\ORM\FieldType\DBField;
|
|
use SilverStripe\ORM\FieldType\DBHTMLText;
|
|
|
|
/**
|
|
* A simple CMS menu item.
|
|
*
|
|
* Items can be added to the menu through custom {@link LeftAndMainExtension}
|
|
* classes and {@link CMSMenu}.
|
|
*
|
|
* @see CMSMenu
|
|
*/
|
|
class CMSMenuItem extends Object
|
|
{
|
|
|
|
/**
|
|
* The (translated) menu title
|
|
* @var string $title
|
|
*/
|
|
public $title;
|
|
|
|
/**
|
|
* Relative URL
|
|
* @var string $url
|
|
*/
|
|
public $url;
|
|
|
|
/**
|
|
* Parent controller class name
|
|
* @var string $controller
|
|
*/
|
|
public $controller;
|
|
|
|
/**
|
|
* Menu priority (sort order)
|
|
* @var integer $priority
|
|
*/
|
|
public $priority;
|
|
|
|
/**
|
|
* Attributes for the link. For instance, custom data attributes or standard
|
|
* HTML anchor properties.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $attributes = array();
|
|
|
|
/**
|
|
* @var string
|
|
*/
|
|
public $iconClass;
|
|
|
|
/**
|
|
* Create a new CMS Menu Item
|
|
*
|
|
* @param string $title
|
|
* @param string $url
|
|
* @param string $controller Controller class name
|
|
* @param integer $priority The sort priority of the item
|
|
* @param string $iconClass
|
|
*/
|
|
public function __construct($title, $url, $controller = null, $priority = -1, $iconClass = null)
|
|
{
|
|
$this->title = $title;
|
|
$this->url = $url;
|
|
$this->controller = $controller;
|
|
$this->priority = $priority;
|
|
$this->iconClass = $iconClass;
|
|
|
|
parent::__construct();
|
|
}
|
|
|
|
/**
|
|
* @param array $attributes
|
|
*/
|
|
public function setAttributes($attributes)
|
|
{
|
|
$this->attributes = $attributes;
|
|
}
|
|
|
|
/**
|
|
* @param array $attrs
|
|
* @return DBHTMLText
|
|
*/
|
|
public function getAttributesHTML($attrs = null)
|
|
{
|
|
$excludeKeys = (is_string($attrs)) ? func_get_args() : null;
|
|
|
|
if (!$attrs || is_string($attrs)) {
|
|
$attrs = $this->attributes;
|
|
}
|
|
|
|
// Remove empty or excluded values
|
|
foreach ($attrs as $key => $value) {
|
|
if (($excludeKeys && in_array($key, $excludeKeys))
|
|
|| (!$value && $value !== 0 && $value !== '0')
|
|
) {
|
|
unset($attrs[$key]);
|
|
continue;
|
|
}
|
|
}
|
|
|
|
// Create markkup
|
|
$parts = array();
|
|
|
|
foreach ($attrs as $name => $value) {
|
|
$parts[] = ($value === true) ? "{$name}=\"{$name}\"" : "{$name}=\"" . Convert::raw2att($value) . "\"";
|
|
}
|
|
|
|
return DBField::create_field('HTMLFragment', implode(' ', $parts));
|
|
}
|
|
}
|