Ejemplo n.º 1
0
 /**
  * The index handler.
  * 
  * @access public
  * @return string The HTML code.
  */
 public function index()
 {
     $Shipping = new Shipping();
     $params = array();
     $this->getView()->set('Shippings', $Shipping->findList($params, 'Position asc'));
     return $this->getView()->render();
 }