Menu.php 468 B

12345678910111213141516171819202122232425262728293031
  1. <?php
  2. /**
  3. * FecShop file.
  4. *
  5. * @link http://www.fecshop.com/
  6. * @copyright Copyright (c) 2016 FecShop Software LLC
  7. * @license http://www.fecshop.com/license/
  8. */
  9. namespace fecadmin\views\layouts;
  10. use Yii;
  11. use fec\helpers\CUrl;
  12. use fec\helpers\CProfile;
  13. use fecadmin\models\AdminMenu;
  14. class Menu{
  15. public static function getContent(){
  16. $AdminMenu = new AdminMenu;
  17. return $AdminMenu->getLeftMenuTreeHtml();
  18. }
  19. }
  20. ?>