public function gift_ajax_quik_showAction() { $this->_gift = new gift((int) $_REQUEST['gift_id']); if ($this->_gift->get('id')) { $prices = $this->_gift_prices($this->_gift->get('id')); $delivery_info = $this->_delivery_info($prices); $shop = new shop(); $this->assign('shops', $shop->select()); $this->assign('click_type', 3); $this->assign('gift', $this->_gift); $this->assign('prices', $prices); Zend_Registry::get('target')->template = "clear_template.htm"; } else { $this->_page404(); return false; } }