1: <?php
2: include_once($phppath . "/comp/bundle/menu/BootstrapSideMenu.php");
3: class MenuUiSide extends BootstrapSideMenu{
4: public function onstart() {
5: //$this->sphp_api->banMenuLink("Logout","Home");
6: $this->sphp_api->addMenu("Home","","fa fa-home");
7: $this->sphp_api->addMenuLink("Home", getAppURL("admhome"),"fa fa-home","Home");
8: $this->sphp_api->addMenuLink("Plugin Home", getAppURL("installer"),"fa fa-cog","Home");
9: $this->sphp_api->addMenuLink("Logout", getEventURL("logout","","admin"),"fa fa-power-off","Home");
10: include_once("plugin/cadmmenu.php");
11: }
12: }
13: