Example #1
0
 public function getNewToysAction()
 {
     $Product = new Product();
     $this->view->toys = $Product->get_new_products(10);
     //$this->_forward('list-toys');
     //$this->_forward('list-toys',null,null,array('list_type' => 'new_toys'));
     //$this->_helper->actionStack('list-toys');
     $this->view->h1 = "Новинки";
     $this->view->list_type = 'top_new';
     $this->_helper->viewRenderer('list-toys');
     $this->set_layout_vars();
 }