2013-10-02 08:06:54 +02:00
|
|
|
# How to customize the CMS Menu
|
2012-08-19 14:14:41 +02:00
|
|
|
|
2013-10-02 08:06:54 +02:00
|
|
|
## Adding a administration panel
|
2012-08-19 14:14:41 +02:00
|
|
|
|
2013-10-02 08:06:54 +02:00
|
|
|
Every time you add a new extension of the `[api:LeftAndMain]` class to the CMS,
|
|
|
|
SilverStripe will automatically create a new `[api:CMSMenuItem]` for it
|
|
|
|
|
|
|
|
The most popular extension of LeftAndMain is a `[api:ModelAdmin]` class, so
|
|
|
|
for a more detailed introduction to creating new `ModelAdmin` interfaces, read
|
2014-05-29 00:58:40 +02:00
|
|
|
the [ModelAdmin reference](../reference/modeladmin).
|
2013-10-02 08:06:54 +02:00
|
|
|
|
|
|
|
In this document we'll take the `ProductAdmin` class used in the
|
2014-05-29 00:58:40 +02:00
|
|
|
[ModelAdmin reference](../reference/modeladmin#setup) and so how we can change
|
|
|
|
the menu behaviour by using the `$menu_title` and `$menu_icon` statics to
|
2012-08-19 14:14:41 +02:00
|
|
|
provide a custom title and icon.
|
|
|
|
|
2013-10-02 08:06:54 +02:00
|
|
|
### Defining a Custom Icon
|
2012-08-19 14:14:41 +02:00
|
|
|
|
2013-10-02 08:06:54 +02:00
|
|
|
First we'll need a custom icon. For this purpose SilverStripe uses 16x16
|
|
|
|
black-and-transparent PNG graphics. In this case we'll place the icon in
|
|
|
|
`mysite/images`, but you are free to use any location.
|
2012-08-19 14:14:41 +02:00
|
|
|
|
|
|
|
:::php
|
|
|
|
class ProductAdmin extends ModelAdmin {
|
|
|
|
// ...
|
2013-03-21 19:48:54 +01:00
|
|
|
private static $menu_icon = 'mysite/images/product-icon.png';
|
2012-08-19 14:14:41 +02:00
|
|
|
}
|
|
|
|
|
2013-10-02 08:06:54 +02:00
|
|
|
### Defining a Custom Title
|
2012-08-19 14:14:41 +02:00
|
|
|
|
|
|
|
The title of menu entries is configured through the `$menu_title` static.
|
2013-10-02 08:06:54 +02:00
|
|
|
If its not defined, the CMS falls back to using the class name of the
|
|
|
|
controller, removing the "Admin" bit at the end.
|
2012-08-19 14:14:41 +02:00
|
|
|
|
|
|
|
:::php
|
|
|
|
class ProductAdmin extends ModelAdmin {
|
|
|
|
// ...
|
2013-03-21 19:48:54 +01:00
|
|
|
private static $menu_title = 'My Custom Admin';
|
2012-08-19 14:14:41 +02:00
|
|
|
}
|
|
|
|
|
2013-10-02 08:06:54 +02:00
|
|
|
In order to localize the menu title in different languages, use the
|
|
|
|
`<classname>.MENUTITLE` entity name, which is automatically created when running
|
|
|
|
the i18n text collection.
|
|
|
|
|
|
|
|
For more information on language and translations, please refer to the
|
|
|
|
[i18n](../reference/ii8n) docs.
|
|
|
|
|
|
|
|
## Adding an external link to the menu
|
|
|
|
|
|
|
|
On top of your administration windows, the menu can also have external links
|
2014-05-29 00:58:40 +02:00
|
|
|
(e.g. to external reference). In this example, we're going to add a link to
|
2013-10-02 08:06:54 +02:00
|
|
|
Google to the menu.
|
|
|
|
|
|
|
|
First, we need to define a `[api:LeftAndMainExtension]` which will contain our
|
|
|
|
button configuration.
|
|
|
|
|
|
|
|
:::php
|
|
|
|
<?php
|
|
|
|
|
|
|
|
class CustomLeftAndMain extends LeftAndMainExtension {
|
|
|
|
|
|
|
|
public function init() {
|
|
|
|
// unique identifier for this item. Will have an ID of Menu-$ID
|
|
|
|
$id = 'LinkToGoogle';
|
|
|
|
|
|
|
|
// your 'nice' title
|
|
|
|
$title = 'Google';
|
|
|
|
|
|
|
|
// the link you want to item to go to
|
|
|
|
$link = 'http://google.com';
|
|
|
|
|
|
|
|
// priority controls the ordering of the link in the stack. The
|
|
|
|
// lower the number, the lower in the list
|
|
|
|
$priority = -2;
|
|
|
|
|
|
|
|
// Add your own attributes onto the link. In our case, we want to
|
|
|
|
// open the link in a new window (not the original)
|
|
|
|
$attributes = array(
|
|
|
|
'target' => '_blank'
|
|
|
|
);
|
|
|
|
|
|
|
|
CMSMenu::add_link($id, $title, $link, $priority, $attributes);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
To have the link appear, make sure you add the extension to the `LeftAndMain`
|
|
|
|
class. For more information about configuring extensions see the
|
2014-05-29 00:58:40 +02:00
|
|
|
[DataExtension reference](../reference/dataextension).
|
2013-10-02 08:06:54 +02:00
|
|
|
|
|
|
|
:::php
|
|
|
|
LeftAndMain::add_extension('CustomLeftAndMain')
|
|
|
|
|
2012-08-19 14:14:41 +02:00
|
|
|
|
|
|
|
## Related
|
|
|
|
|
2014-05-29 00:58:40 +02:00
|
|
|
* [How to extend the CMS interface](extend-cms-interface)
|