mirror of
https://github.com/wintercms/winter.git
synced 2024-06-28 05:33:29 +02:00
17 lines
348 B
PHP
17 lines
348 B
PHP
<?php namespace Backend\Facades;
|
|
|
|
use October\Rain\Support\Facade;
|
|
|
|
class BackendMenu extends Facade
|
|
{
|
|
/**
|
|
* Get the registered name of the component.
|
|
*
|
|
* Resolves to:
|
|
* - Backend\Classes\NavigationManager
|
|
*
|
|
* @return string
|
|
*/
|
|
protected static function getFacadeAccessor() { return 'backend.menu'; }
|
|
}
|