本文整理汇总了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;
}