Public Member Functions | |
indexAction () | |
viewAction () |
Definition at line 35 of file CustomerController.php.
indexAction | ( | ) |
Definition at line 37 of file CustomerController.php.
00038 { 00039 $this->loadLayout(); 00040 $this->_initLayoutMessages('catalog/session'); 00041 00042 if ($navigationBlock = $this->getLayout()->getBlock('customer_account_navigation')) { 00043 $navigationBlock->setActive('review/customer'); 00044 } 00045 if ($block = $this->getLayout()->getBlock('review_customer_list')) { 00046 $block->setRefererUrl($this->_getRefererUrl()); 00047 } 00048 00049 $this->getLayout()->getBlock('head')->setTitle($this->__('My Product Reviews')); 00050 00051 $this->renderLayout(); 00052 }
viewAction | ( | ) |
Definition at line 54 of file CustomerController.php.
00055 { 00056 $this->loadLayout(); 00057 if ($navigationBlock = $this->getLayout()->getBlock('customer_account_navigation')) { 00058 $navigationBlock->setActive('review/customer'); 00059 } 00060 $this->getLayout()->getBlock('head')->setTitle($this->__('Review Details')); 00061 $this->renderLayout(); 00062 }