当前位置: 首页>>代码示例>>PHP>>正文


PHP eZRSSExport::definition方法代码示例

本文整理汇总了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);
 }
开发者ID:EVE-Corp-Center,项目名称:ECC-Website,代码行数:24,代码来源:ezcontentoperationcollection.php

示例2: fetchList

 static function fetchList( $asObject = true )
 {
     return eZPersistentObject::fetchObjectList( eZRSSExport::definition(),
                                                 null, array( 'status' => self::STATUS_VALID ), null, null,
                                                 $asObject );
 }
开发者ID:robinmuilwijk,项目名称:ezpublish,代码行数:6,代码来源:ezrssexport.php


注:本文中的eZRSSExport::definition方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。