當前位置: 首頁>>代碼示例>>PHP>>正文


PHP SimpleXMLElement::getBlockName方法代碼示例

本文整理匯總了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;
 }
開發者ID:hettema,項目名稱:Stages,代碼行數:54,代碼來源:Layout.php


注:本文中的SimpleXMLElement::getBlockName方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。