本文整理汇总了PHP中eZRSSExport::definition方法的典型用法代码示例。如果您正苦于以下问题:PHP eZRSSExport::definition方法的具体用法?PHP eZRSSExport::definition怎么用?PHP eZRSSExport::definition使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类eZRSSExport
的用法示例。
在下文中一共展示了eZRSSExport::definition方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: removeFeedForNode
/**
* Removes a RSS/ATOM Feed export for a node
*
* @param int $nodeID Node ID
*
* @since 4.3
*/
public static function removeFeedForNode($nodeID)
{
$rssExport = eZPersistentObject::fetchObject(eZRSSExport::definition(), null, array('node_id' => $nodeID, 'status' => eZRSSExport::STATUS_VALID), true);
if (!$rssExport instanceof eZRSSExport) {
eZDebug::writeError('DisableRSS: There is no rss/atom feeds left to delete for this node: ' . $nodeID, __METHOD__);
return array('status' => false);
}
$node = eZContentObjectTreeNode::fetch($nodeID);
if (!$node instanceof eZContentObjectTreeNode) {
eZDebug::writeError('DisableRSS: Could not fetch node: ' . $nodeID, __METHOD__);
return array('status' => false);
}
$objectID = $node->attribute('contentobject_id');
$rssExport->removeThis();
eZContentCacheManager::clearContentCacheIfNeeded($objectID);
return array('status' => true);
}
示例2: fetchList
static function fetchList( $asObject = true )
{
return eZPersistentObject::fetchObjectList( eZRSSExport::definition(),
null, array( 'status' => self::STATUS_VALID ), null, null,
$asObject );
}