Advertisement
Guest User

Untitled

a guest
Feb 24th, 2017
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.45 KB | None | 0 0
  1. <?php
  2.  
  3. /**
  4.  * Invitation customer account frontend controller
  5.  *
  6.  * @category   Summit
  7.  * @package    Summit_Customer
  8.  */
  9.  
  10. require_once(Mage::getModuleDir('controllers', 'Mage_Customer') . DS . 'AccountController.php');
  11.  
  12. class Summit_Customer_AccountController extends Mage_Customer_AccountController
  13. {
  14.     /**
  15.      * Confirm customer account by id and confirmation key
  16.      */
  17.     public function confirmAction()
  18.     {
  19.         // Some code
  20.     }
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement