mirror of
https://github.com/silverstripe/silverstripe-subsites
synced 2024-10-22 11:05:55 +02:00
24 lines
550 B
PHP
24 lines
550 B
PHP
<?php
|
|
|
|
namespace SilverStripe\Subsites\Extensions;
|
|
|
|
use SilverStripe\Core\Extension;
|
|
|
|
/*
|
|
* Simple extension to show admins in the menu of subsites.
|
|
* If an admin area should be available to a subsite, you can attach
|
|
* this class to your admin in config. eg:
|
|
*
|
|
* MyAdmin::add_extension('SubsiteMenuExtension');
|
|
*
|
|
* Or you can include the subsiteCMSShowInMenu function in your admin class and have it return true
|
|
*/
|
|
|
|
class SubsiteMenuExtension extends Extension
|
|
{
|
|
public function subsiteCMSShowInMenu()
|
|
{
|
|
return true;
|
|
}
|
|
}
|