Example #1
0
 public function render(Varien_Object $row)
 {
     $id = $row->getId();
     if ($id > 1) {
         $type = 'megamenu/horizontal';
         $template = 'horizontal.phtml';
         if ($row->getMenuType() == 2) {
             $type = 'megamenu/vertical';
             $template = 'vertical.phtml';
         }
         $html = '<strong>{{block type="' . $type . '" menu_id="' . $id . '" template="megamenu/' . $template . '"}}</strong>';
         return $html;
     } else {
         return '';
     }
 }