Public Member Functions | |
uploadAction () | |
indexAction () | |
Protected Member Functions | |
_isAllowed () |
Definition at line 34 of file UploaderController.php.
_isAllowed | ( | ) | [protected] |
Reimplemented from Mage_Adminhtml_Controller_Action.
Definition at line 51 of file UploaderController.php.
00052 { 00053 return Mage::getSingleton('admin/session')->isAllowed('media'); 00054 }
indexAction | ( | ) |
Definition at line 42 of file UploaderController.php.
00043 { 00044 $this->loadLayout(); 00045 $this->_addContent( 00046 $this->getLayout()->createBlock('adminhtml/media_uploader') 00047 ); 00048 $this->renderLayout(); 00049 }
uploadAction | ( | ) |
Definition at line 37 of file UploaderController.php.
00038 { 00039 $this->getResponse()->setBody(Zend_Json::encode($_REQUEST)); 00040 }