示例#1
0
 /**
  * The default action - show the home page
  */
 public function indexAction()
 {
     $this->view->Title = 'Màu xe - Phong thủy';
     $this->view->headTitle($this->view->Title);
     $condition = array();
     $page = $this->getRequest()->getParam('page');
     list($this->view->Pager, $this->view->Color) = Color::getAll($condition, $page, 40, $order = 'id DESC');
 }
示例#2
0
 public function indexAction()
 {
     $this->view->Title = "Phong thủy xe";
     $this->view->headTitle($this->view->Title);
     $page = $this->getRequest()->getParam('page');
     $condition = array();
     list($this->view->Pager, $this->view->Color) = Color::getAll($condition, $page);
 }