1: | <?php |
2: | include_once(SphpBase::sphp_settings()->slib_path . "/comp/bundle/menu/BootstrapMenu.php"); |
3: | class MenuUi extends BootstrapMenu{ |
4: | public function onstart() { |
5: | //$this->setNavBarCss("navbar sticky-top navbar-expand-md bg-dark navbar-dark"); |
6: | $this->sphp_api->addMenu("Home", "","fa fa-home","root"); |
7: | $this->sphp_api->addMenuLink("Home", getAppURL("index"),"fa fa-home","Home"); |
8: | $this->sphp_api->addMenuLink("Contact Us", getEventURL('page','contacts','index'),"fa fa-fw fa-clock-o","Home"); |
9: | include_once("plugin/cmenu.php"); |
10: | |
11: | } |
12: | } |
13: |