コード例 #1
0
ファイル: Wishlist.php プロジェクト: aiesh/magento2
 /**
  * Preparing global layout
  *
  * @return void
  */
 protected function _prepareLayout()
 {
     parent::_prepareLayout();
     $headBlock = $this->getLayout()->getBlock('head');
     if ($headBlock) {
         $headBlock->setTitle(__('My Wish List'));
     }
 }
コード例 #2
0
ファイル: Wishlist.php プロジェクト: aiesh/magento2
 /**
  * Prepare global layout
  *
  * @return $this
  *
  */
 protected function _prepareLayout()
 {
     parent::_prepareLayout();
     $headBlock = $this->getLayout()->getBlock('head');
     if ($headBlock) {
         $headBlock->setTitle($this->getHeader());
     }
     return $this;
 }
コード例 #3
0
 /**
  * Preparing global layout
  *
  * @return void
  */
 protected function _prepareLayout()
 {
     parent::_prepareLayout();
     $this->pageConfig->getTitle()->set(__('My Wish List'));
 }
コード例 #4
0
 /**
  * Prepare global layout
  *
  * @return $this
  *
  */
 protected function _prepareLayout()
 {
     parent::_prepareLayout();
     $this->pageConfig->getTitle()->set($this->getHeader());
     return $this;
 }