Public Member Functions | |
searchAction () | |
gridAction () | |
Protected Member Functions | |
_construct () |
Definition at line 34 of file SelectionController.php.
_construct | ( | ) | [protected] |
Reimplemented from Mage_Core_Controller_Varien_Action.
Definition at line 36 of file SelectionController.php.
00037 { 00038 $this->setUsedModuleName('Mage_Bundle'); 00039 }
gridAction | ( | ) |
Definition at line 52 of file SelectionController.php.
00053 { 00054 return $this->getResponse()->setBody( 00055 $this->getLayout() 00056 ->createBlock('bundle/adminhtml_catalog_product_edit_tab_bundle_option_search_grid') 00057 ->setIndex($this->getRequest()->getParam('index')) 00058 ->toHtml() 00059 ); 00060 }
searchAction | ( | ) |
Definition at line 41 of file SelectionController.php.
00042 { 00043 return $this->getResponse()->setBody( 00044 $this->getLayout() 00045 ->createBlock('bundle/adminhtml_catalog_product_edit_tab_bundle_option_search') 00046 ->setIndex($this->getRequest()->getParam('index')) 00047 ->setFirstShow(true) 00048 ->toHtml() 00049 ); 00050 }