コード例 #1
0
ファイル: Shipping.php プロジェクト: aiesh/magento2
 /**
  * @return $this
  */
 protected function _prepareLayout()
 {
     if ($headBlock = $this->getLayout()->getBlock('head')) {
         $headBlock->setTitle(__('Shipping Methods') . ' - ' . $headBlock->getDefaultTitle());
     }
     return parent::_prepareLayout();
 }
コード例 #2
0
ファイル: Overview.php プロジェクト: zhangjiachao/magento2
 /**
  * Initialize default item renderer
  *
  * @return $this
  */
 protected function _prepareLayout()
 {
     $headBlock = $this->getLayout()->getBlock('head');
     if ($headBlock) {
         $headBlock->setTitle(__('Review Order - %1', $headBlock->getDefaultTitle()));
     }
     return parent::_prepareLayout();
 }
コード例 #3
0
ファイル: Addresses.php プロジェクト: aiesh/magento2
 /**
  * @return $this
  */
 protected function _prepareLayout()
 {
     $headBlock = $this->getLayout()->getBlock('head');
     if ($headBlock) {
         $headBlock->setTitle(__('Ship to Multiple Addresses') . ' - ' . $headBlock->getDefaultTitle());
     }
     return parent::_prepareLayout();
 }
コード例 #4
0
ファイル: Overview.php プロジェクト: shabbirvividads/magento2
 /**
  * Initialize default item renderer
  *
  * @return $this
  */
 protected function _prepareLayout()
 {
     $this->pageConfig->getTitle()->set(__('Review Order - %1', $this->pageConfig->getTitle()->getDefault()));
     return parent::_prepareLayout();
 }
コード例 #5
0
 /**
  * @return $this
  */
 protected function _prepareLayout()
 {
     $this->pageConfig->getTitle()->set(__('Ship to Multiple Addresses') . ' - ' . $this->pageConfig->getTitle()->getDefault());
     return parent::_prepareLayout();
 }
コード例 #6
0
 /**
  * @return $this
  */
 protected function _prepareLayout()
 {
     $this->pageConfig->getTitle()->set(__('Shipping Methods') . ' - ' . $this->pageConfig->getTitle()->getDefault());
     return parent::_prepareLayout();
 }