ORIENT/modules/backend/facades/BackendMenu.php

20 lines
362 B
PHP
Raw Normal View History

2014-05-14 13:24:20 +00:00
<?php namespace Backend\Facades;
use October\Rain\Support\Facade;
class BackendMenu extends Facade
{
/**
* Get the registered name of the component.
*
2014-05-14 13:24:20 +00:00
* Resolves to:
* - Backend\Classes\NavigationManager
*
2014-05-14 13:24:20 +00:00
* @return string
*/
2014-10-10 21:36:04 +00:00
protected static function getFacadeAccessor()
{
return 'backend.menu';
}
2014-05-14 13:24:20 +00:00
}