Example #1
0
 /**
  * Parse
  */
 private function parse()
 {
     // get categories
     $categories = FrontendAgendaModel::getAllCategories();
     // any categories?
     if (!empty($categories)) {
         // build link
         $link = FrontendNavigation::getURLForBlock('Agenda', 'Category');
         // loop and reset url
         foreach ($categories as &$row) {
             $row['url'] = $link . '/' . $row['url'];
         }
     }
     // assign comments
     $this->tpl->assign('widgetAgendaCategories', $categories);
 }