本文整理汇总了PHP中Magento\Framework\View\Layout::getChildBlock方法的典型用法代码示例。如果您正苦于以下问题:PHP Layout::getChildBlock方法的具体用法?PHP Layout::getChildBlock怎么用?PHP Layout::getChildBlock使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Magento\Framework\View\Layout
的用法示例。
在下文中一共展示了Layout::getChildBlock方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: testGetChildBlock
/**
* @magentoAppIsolation enabled
*/
public function testGetChildBlock()
{
$this->_layout->addContainer('parent', 'Parent');
$block = $this->_layout->addBlock('Magento\\Framework\\View\\Element\\Text', 'block', 'parent', 'block_alias');
$this->_layout->addContainer('container', 'Container', [], 'parent', 'container_alias');
$this->assertSame($block, $this->_layout->getChildBlock('parent', 'block_alias'));
$this->assertFalse($this->_layout->getChildBlock('parent', 'container_alias'));
}
示例2: testGetChildNonExistBlock
public function testGetChildNonExistBlock()
{
$this->structureMock->expects($this->once())
->method('getChildId')
->with('non_exist_parent', 'non_exist_alias')
->willReturn(false);
$this->assertFalse($this->model->getChildBlock('non_exist_parent', 'non_exist_alias'));
}
示例3: getChildBlock
/**
* {@inheritdoc}
*/
public function getChildBlock($parentName, $alias)
{
$pluginInfo = $this->pluginList->getNext($this->subjectType, 'getChildBlock');
if (!$pluginInfo) {
return parent::getChildBlock($parentName, $alias);
} else {
return $this->___callPlugins('getChildBlock', func_get_args(), $pluginInfo);
}
}