Ejemplo n.º 1
0
 public function formsList($cssClass = false)
 {
     # Create the list
     $list = array();
     foreach ($this->forms as $form => $title) {
         $list[$form] = "<a href=\"{$this->baseUrl}/{$form}/\">" . htmlspecialchars($title) . '</a>';
     }
     # Compile the HTML
     $html .= application::htmlUl($list, false, $cssClass);
     # Return the HTML
     return $html;
 }