本文整理匯總了PHP中eZTemplateCompiler::combineStaticNodes方法的典型用法代碼示例。如果您正苦於以下問題:PHP eZTemplateCompiler::combineStaticNodes方法的具體用法?PHP eZTemplateCompiler::combineStaticNodes怎麽用?PHP eZTemplateCompiler::combineStaticNodes使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類eZTemplateCompiler
的用法示例。
在下文中一共展示了eZTemplateCompiler::combineStaticNodes方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: processNodeCombiningChildren
static function processNodeCombiningChildren($useComments, $php, $tpl, &$nodeChildren, &$resourceData, &$parentNode)
{
$newNodeChildren = array();
$lastNode = false;
foreach ($nodeChildren as $node) {
$newNode = false;
if (!isset($node[0])) {
continue;
}
$nodeType = $node[0];
if ($nodeType == eZTemplate::NODE_ROOT) {
$children = $node[1];
$newNode = array($nodeType, false);
if ($children) {
eZTemplateCompiler::processNodeCombiningChildren($useComments, $php, $tpl, $children, $resourceData, $newNode);
}
} else {
if ($nodeType == eZTemplate::NODE_TEXT) {
$text = $node[2];
$placement = $node[3];
$newNode = array($nodeType, false, $text, $placement);
eZTemplateCompiler::combineStaticNodes($tpl, $resourceData, $lastNode, $newNode);
} else {
if ($nodeType == eZTemplate::NODE_VARIABLE) {
$variableCustom = $node[1];
$variableData = $node[2];
$variablePlacement = $node[3];
$variableParameters = false;
$dataInspection = eZTemplateCompiler::inspectVariableData($tpl, $variableData, $variablePlacement, $resourceData);
$newNode = $node;
$newNode[1] = $variableCustom;
unset($dataInspection);
eZTemplateCompiler::combineStaticNodes($tpl, $resourceData, $lastNode, $newNode);
} else {
if ($nodeType == eZTemplate::NODE_FUNCTION) {
$functionChildren = $node[1];
$functionName = $node[2];
$functionParameters = $node[3];
$functionPlacement = $node[4];
$newNode = array($nodeType, false, $functionName, $functionParameters, $functionPlacement);
if (isset($node[5])) {
$newNode[5] = $node[5];
}
if (is_array($functionChildren)) {
eZTemplateCompiler::processNodeCombiningChildren($useComments, $php, $tpl, $functionChildren, $resourceData, $newNode);
}
} else {
$newNode = $node;
}
}
}
}
if ($lastNode != false) {
$newNodeChildren[] = $lastNode;
$lastNode = false;
}
if ($newNode != false) {
$lastNode = $newNode;
}
}
if ($lastNode != false) {
$newNodeChildren[] = $lastNode;
$lastNode = false;
}
$parentNode[1] = $newNodeChildren;
}