12345678910111213141516171819202122232425262728293031 |
- <?php
- /**
- * FecShop file.
- *
- * @link http://www.fecshop.com/
- * @copyright Copyright (c) 2016 FecShop Software LLC
- * @license http://www.fecshop.com/license/
- */
- namespace fecadmin\views\layouts;
- use Yii;
- use fec\helpers\CUrl;
- use fec\helpers\CProfile;
- use fecadmin\models\AdminMenu;
- class Menu{
-
-
-
- public static function getContent(){
- $AdminMenu = new AdminMenu;
- return $AdminMenu->getLeftMenuTreeHtml();
-
- }
-
-
-
-
- }
- ?>
|