Blame view

modules/default/blocks/menu.block.class.php 246 Bytes
8d65d0ce   andryeyev   init
1
2
3
4
5
6
7
8
9
  <?php
  Class MenuBlock Extends baseBlock{
   public function run(){
    $menu = new Menu($this->lang);
    $this->tpl->assign('menu_ul', $menu->getMenuUL($this->url) );
    $this->tpl->assign('menu_bottom_ul', $menu->getMenuBottomUL($this->url) );
   }
  }
  ?>