本文整理汇总了PHP中Mage_Core_Block_Template::getLayout方法的典型用法代码示例。如果您正苦于以下问题:PHP Mage_Core_Block_Template::getLayout方法的具体用法?PHP Mage_Core_Block_Template::getLayout怎么用?PHP Mage_Core_Block_Template::getLayout使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Mage_Core_Block_Template
的用法示例。
在下文中一共展示了Mage_Core_Block_Template::getLayout方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: _getBlockLayoutHandles
/**
* Get the active layout handles for this block and any child blocks
*
* This is probably kind of slow since it uses a bunch of xpath searches
* but this was the easiest way to get the info needed. Should be a target
* for future optimization
*
* There is an issue with encoding the used handles in the URL, if the used
* handles change (ex customer logs in), the cached version of the page will
* still have the old handles encoded in it's ESI url. This can lead to
* weirdness like the "Log in" link displaying for already logged in
* visitors on pages that were initially visited by not-logged-in visitors.
* Not sure of a solution for this yet.
*
* Above problem is currently solved by EsiController::_swapCustomerHandles()
* but it would be best to find a more general solution to this.
*
* @param Mage_Core_Block_Template $block
* @return array
*/
protected function _getBlockLayoutHandles($block)
{
Varien_Profiler::start('turpentine::observer::esi::_getBlockLayoutHandles');
$layout = $block->getLayout();
$layoutXml = Mage::helper('turpentine/esi')->getLayoutXml();
$activeHandles = array();
// get the xml node representing the block we're working on (from the
// default handle probably)
$blockNode = current($layout->getNode()->xpath(sprintf('//block[@name=\'%s\']', $block->getNameInLayout())));
$childBlocks = Mage::helper('turpentine/data')->getChildBlockNames($blockNode);
foreach ($childBlocks as $blockName) {
foreach ($layout->getUpdate()->getHandles() as $handle) {
// check if this handle has any block or reference tags that
// refer to this block or a child block, unless the handle name
// is blank
if ($handle !== '' && $layoutXml->xpath(sprintf('//%s//*[@name=\'%s\']', $handle, $blockName))) {
$activeHandles[] = $handle;
}
}
}
if (!$activeHandles) {
$activeHandles[] = 'default';
}
Varien_Profiler::stop('turpentine::observer::esi::_getBlockLayoutHandles');
return array_unique($activeHandles);
}