Advertisement
Guest User

Untitled

a guest
Jul 28th, 2017
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. ///////////////////////////// class Mage_Adminhtml_Block_Customer_Edit_Renderer_Newpass //////////////////////////////////////
  2. public function render(Varien_Data_Form_Element_Abstract $element)
  3. {
  4. $html = 'stuff';
  5. $html .= 'more stuff';
  6.  
  7. return $html;
  8. }
  9.  
  10. ////////////////////////////// Module File Below //////////////////////////////////////////
  11. class John_MyModule_Block_Adminhtml_Customer_Edit_Renderer_Newpass extends Mage_Adminhtml_Block_Customer_Edit_Renderer_Newpass
  12. {
  13. public function render(Varien_Data_Form_Element_Abstract $element)
  14. {
  15. parent::render($element);
  16. // I want to append some html here
  17. return $element;
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement