Public Member Functions | |
indexAction () | |
resultAction () |
Definition at line 34 of file AdvancedController.php.
indexAction | ( | ) |
Definition at line 37 of file AdvancedController.php.
00038 { 00039 $this->loadLayout(); 00040 $this->_initLayoutMessages('catalogsearch/session'); 00041 $this->renderLayout(); 00042 }
resultAction | ( | ) |
Definition at line 44 of file AdvancedController.php.
00045 { 00046 $this->loadLayout(); 00047 try { 00048 Mage::getSingleton('catalogsearch/advanced')->addFilters($this->getRequest()->getQuery()); 00049 } catch (Mage_Core_Exception $e) { 00050 Mage::getSingleton('catalogsearch/session')->addError($e->getMessage()); 00051 $this->_redirectError(Mage::getURL('*/*/')); 00052 } 00053 $this->_initLayoutMessages('catalog/session'); 00054 $this->renderLayout(); 00055 }