コード例 #1
0
ファイル: shippings.php プロジェクト: vosaan/ankor.local
 /**
  * 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();
 }