winter/modules/backend/facades/BackendMenu.php

20 lines
364 B
PHP
Raw Normal View History

2014-05-14 23:24:20 +10:00
<?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
*/
2014-10-10 23:36:04 +02:00
protected static function getFacadeAccessor()
{
return 'backend.menu';
}
2014-05-14 23:24:20 +10:00
}