Example #1
0
 /**
  * The index handler.
  * 
  * @access public
  * @return string The HTML code.
  */
 public function index()
 {
     $Brand = new Product_Brand();
     $this->getView()->set('Brands', $Brand->findShortList(array(), 'Name asc'));
     return $this->getView()->render();
 }