Created
March 7, 2012 19:03
-
-
Save saranyan/1995155 to your computer and use it in GitHub Desktop.
Admin controller Magento Sample
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| class Xcommerce_Cse_AdminController extends Mage_Adminhtml_Controller_Action | |
| { | |
| public function indexAction() | |
| { | |
| $this->loadLayout() | |
| ->_addContent($this->getLayout()->createBlock('cse/listProducts')) | |
| ->renderLayout(); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment