Пример #1
0
 /**
  * main action
  */
 public function mainAction()
 {
     parent::mainAction();
     $node_id = (int) $this->GET['id'];
     // display Dublin district menu when in Dublin county
     if (is_numeric($node_id) && $node_id > 0) {
         $Node = new common_node();
         $node = $Node->detail($node_id);
         if ($node_id == 1536 || $node['parent'] == 1536) {
             $this->tpl->parse("content.dublin_menu");
         }
     }
     return true;
 }