本文整理匯總了PHP中SimpleXMLElement::getBlockName方法的典型用法代碼示例。如果您正苦於以下問題:PHP SimpleXMLElement::getBlockName方法的具體用法?PHP SimpleXMLElement::getBlockName怎麽用?PHP SimpleXMLElement::getBlockName使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類SimpleXMLElement
的用法示例。
在下文中一共展示了SimpleXMLElement::getBlockName方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: _generateBlock
/**
* Gernerate block for the passed node
*
* @param SimpleXMLElement $node
* @param SimpleXMLElement $parent
* @return Core_Model_Layout
*/
protected function _generateBlock($node, $parent)
{
if (!empty($node['class'])) {
$className = (string) $node['class'];
} else {
$className = App_Main::getBlockClassName((string) $node['type']);
}
$blockName = (string) $node['name'];
$block = $this->addBlock($className, $blockName);
if (!$block) {
return $this;
}
if (!empty($node['parent'])) {
$parentBlock = $this->getBlock((string) $node['parent']);
} else {
$parentName = $parent->getBlockName();
if (!empty($parentName)) {
$parentBlock = $this->getBlock($parentName);
}
}
if (!empty($parentBlock)) {
$alias = isset($node['as']) ? (string) $node['as'] : '';
if (isset($node['before'])) {
$sibling = (string) $node['before'];
if ('-' === $sibling) {
$sibling = '';
}
$parentBlock->insert($block, $sibling, false, $alias);
} elseif (isset($node['after'])) {
$sibling = (string) $node['after'];
if ('-' === $sibling) {
$sibling = '';
}
$parentBlock->insert($block, $sibling, true, $alias);
} else {
$parentBlock->append($block, $alias);
}
}
if (!empty($node['template'])) {
$block->setTemplate((string) $node['template']);
}
if (!empty($node['output'])) {
$method = (string) $node['output'];
$this->addOutputBlock($blockName, $method);
}
return $this;
}