本文整理汇总了PHP中eZContentObjectTreeNode::fetchParent方法的典型用法代码示例。如果您正苦于以下问题:PHP eZContentObjectTreeNode::fetchParent方法的具体用法?PHP eZContentObjectTreeNode::fetchParent怎么用?PHP eZContentObjectTreeNode::fetchParent使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类eZContentObjectTreeNode
的用法示例。
在下文中一共展示了eZContentObjectTreeNode::fetchParent方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: getMerckManualNodeUrl
/**
* @param string $applicationName Compatibility with other getNodeUrl operators
* @param eZContentObjectTreeNode $node
* @param boolean $languageCode
* @return string
*/
public static function getMerckManualNodeUrl($applicationName, $node, $languageCode = false)
{
if( $languageCode )
$node->setCurrentLanguage($languageCode);
/* @type $dataMap eZContentObjectAttribute[] */
$chapterNode = ( $node->attribute( 'depth' ) > 4 ) ? $node->fetchParent() : $node;
$topicNode = ( $node->attribute( 'depth' ) > 4 ) ? $node : null;
$linkType = is_null( $topicNode ) ? 'chapter' : 'topic';
$dataMap = $chapterNode->dataMap();
if ( !$dataMap || !isset($dataMap['serialized_taxonomies']) || !$dataMap['serialized_taxonomies']->hasContent() )
return "";
$serial = $dataMap['serialized_taxonomies']->content();
$sectionRemote = null;
if( isset($serial['section']) && is_array($serial['section']) )
$sectionRemote = $serial['section'][0];
$fetchResult = MerckManualFunctionCollection::fetchUnifiedUrl($sectionRemote, $chapterNode, $topicNode, $linkType);
return $fetchResult['result'];
}
示例2: getArticleParent
private function getArticleParent(eZContentObjectTreeNode $node)
{
$parent = $node->fetchParent();
if($parent->className() == "Article")
{
return $this->getArticleParent($parent);
}
return $node;
}