本文整理匯總了PHP中eZURLAliasML::fetchPathByActionList方法的典型用法代碼示例。如果您正苦於以下問題:PHP eZURLAliasML::fetchPathByActionList方法的具體用法?PHP eZURLAliasML::fetchPathByActionList怎麽用?PHP eZURLAliasML::fetchPathByActionList使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類eZURLAliasML
的用法示例。
在下文中一共展示了eZURLAliasML::fetchPathByActionList方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: pathWithNames
function pathWithNames($regenerateCurrent = false)
{
// Only set name if current node is not the content root
$ini = eZINI::instance('content.ini');
$contentRootID = $ini->variable('NodeSettings', 'RootNode');
if ($this->attribute('node_id') != $contentRootID) {
$pathArray = $this->pathArray();
// Get rid of node with ID 1 (a special node)
array_shift($pathArray);
if ($regenerateCurrent) {
// Get rid of current node, path element for this will be calculated
array_pop($pathArray);
}
if (count($pathArray) == 0) {
$path = '';
} else {
$path = eZURLAliasML::fetchPathByActionList("eznode", $pathArray, $this->CurrentLanguage);
}
// Fallback in case fetchPathByActionList() fails,
// then we ask for the path from the parent and generate the current
// entry ourselves.
if ($path === null) {
if ($this->attribute('depth') == 0) {
return '';
}
eZDebug::writeError(__METHOD__ . "() failed to fetch path of node " . $this->attribute('node_id') . ", falling back to generated url entries. Run updateniceurls.php to fix the problem.");
// Return a perma-link when the path lookup failed, this link will always work
$path = 'content/view/full/' . $this->attribute('node_id');
return $path;
}
if ($regenerateCurrent) {
$nodeName = $this->attribute('name');
$nodeName = eZURLAliasML::convertToAlias($nodeName, 'node_' . $this->attribute('node_id'));
if ($path != '') {
$path .= '/' . $nodeName;
} else {
$path = $nodeName;
}
}
} else {
$path = '';
}
if ($regenerateCurrent) {
$path = $this->checkPath($path);
}
return $path;
}