当前位置: 首页>>代码示例>>PHP>>正文


PHP Page::initLayout方法代码示例

本文整理汇总了PHP中Magento\Framework\View\Result\Page::initLayout方法的典型用法代码示例。如果您正苦于以下问题:PHP Page::initLayout方法的具体用法?PHP Page::initLayout怎么用?PHP Page::initLayout使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Magento\Framework\View\Result\Page的用法示例。


在下文中一共展示了Page::initLayout方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: loadLayout

 /**
  * {@inheritdoc}
  */
 public function loadLayout($handles = null, $generateBlocks = true, $generateXml = true, $addActionHandles = true)
 {
     if ($this->_isLayoutLoaded) {
         throw new \RuntimeException('Layout must be loaded only once.');
     }
     // if handles were specified in arguments load them first
     if (!empty($handles)) {
         $this->getLayout()->getUpdate()->addHandle($handles);
     }
     if ($addActionHandles) {
         // add default layout handles for this action
         $this->page->initLayout();
     }
     $this->loadLayoutUpdates();
     if (!$generateXml) {
         return $this;
     }
     $this->generateLayoutXml();
     if (!$generateBlocks) {
         return $this;
     }
     $this->generateLayoutBlocks();
     $this->_isLayoutLoaded = true;
     return $this;
 }
开发者ID:IlyaGluschenko,项目名称:test001,代码行数:28,代码来源:View.php

示例2: initLayout

 /**
  * {@inheritdoc}
  */
 public function initLayout()
 {
     $pluginInfo = $this->pluginList->getNext($this->subjectType, 'initLayout');
     if (!$pluginInfo) {
         return parent::initLayout();
     } else {
         return $this->___callPlugins('initLayout', func_get_args(), $pluginInfo);
     }
 }
开发者ID:HaonanXu,项目名称:der-snack-backup,代码行数:12,代码来源:Interceptor.php

示例3: testInitLayoutLayoutDefined

 public function testInitLayoutLayoutDefined()
 {
     $handleDefault = 'default';
     $fullActionName = 'full_action_name';
     $this->request->expects($this->any())->method('getFullActionName')->will($this->returnValue($fullActionName));
     $this->layoutMerge->expects($this->at(0))->method('addHandle')->with($handleDefault)->willReturnSelf();
     $this->layoutMerge->expects($this->at(1))->method('addHandle')->with($fullActionName)->willReturnSelf();
     $this->layoutMerge->expects($this->at(2))->method('isLayoutDefined')->willReturn(true);
     $this->layoutMerge->expects($this->at(3))->method('removeHandle')->with($handleDefault)->willReturnSelf();
     $this->assertEquals($this->page, $this->page->initLayout());
 }
开发者ID:kidaa30,项目名称:magento2-platformsh,代码行数:11,代码来源:PageTest.php


注:本文中的Magento\Framework\View\Result\Page::initLayout方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。