Example #1
0
 /**
  * Preparing global layout
  *
  * @return void
  */
 protected function _prepareLayout()
 {
     parent::_prepareLayout();
     $headBlock = $this->getLayout()->getBlock('head');
     if ($headBlock) {
         $headBlock->setTitle(__('My Wish List'));
     }
 }
Example #2
0
 /**
  * Prepare global layout
  *
  * @return $this
  *
  */
 protected function _prepareLayout()
 {
     parent::_prepareLayout();
     $headBlock = $this->getLayout()->getBlock('head');
     if ($headBlock) {
         $headBlock->setTitle($this->getHeader());
     }
     return $this;
 }
Example #3
0
 /**
  * Preparing global layout
  *
  * @return void
  */
 protected function _prepareLayout()
 {
     parent::_prepareLayout();
     $this->pageConfig->getTitle()->set(__('My Wish List'));
 }
Example #4
0
 /**
  * Prepare global layout
  *
  * @return $this
  *
  */
 protected function _prepareLayout()
 {
     parent::_prepareLayout();
     $this->pageConfig->getTitle()->set($this->getHeader());
     return $this;
 }