本文整理汇总了PHP中eZContentCacheManager::nodeList方法的典型用法代码示例。如果您正苦于以下问题:PHP eZContentCacheManager::nodeList方法的具体用法?PHP eZContentCacheManager::nodeList怎么用?PHP eZContentCacheManager::nodeList使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类eZContentCacheManager
的用法示例。
在下文中一共展示了eZContentCacheManager::nodeList方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: clearObjectViewCache
/**
* Clears view caches of nodes, parent nodes and relating nodes
* of content object with $objectID.
* It will use 'viewcache.ini' to determine additional nodes.
*
* @param int $objectID The object ID
* @param int $versionNum The version of the object to use, or true for current version
* @param array $additionalNodeList An array with node IDs to add to clear list, or false for no additional nodes.
*/
static function clearObjectViewCache($objectID, $versionNum = true, $additionalNodeList = false)
{
eZDebug::accumulatorStart('node_cleanup_list', '', 'Node cleanup list');
$nodeList = eZContentCacheManager::nodeList($objectID, $versionNum);
if ($nodeList === false and !is_array($additionalNodeList)) {
return false;
}
if ($nodeList === false) {
$nodeList = array();
}
if (is_array($additionalNodeList)) {
array_splice($nodeList, count($nodeList), 0, $additionalNodeList);
}
$nodeList = array_unique($nodeList);
eZDebug::accumulatorStop('node_cleanup_list');
return self::clearNodeViewCacheArray($nodeList);
}
示例2: clearObjectViewCache
static function clearObjectViewCache($objectID, $versionNum = true, $additionalNodeList = false)
{
eZDebug::accumulatorStart('node_cleanup_list', '', 'Node cleanup list');
$nodeList = eZContentCacheManager::nodeList($objectID, $versionNum);
if ($nodeList === false and !is_array($additionalNodeList)) {
return false;
}
if ($nodeList === false) {
$nodeList = array();
}
if (is_array($additionalNodeList)) {
array_splice($nodeList, count($nodeList), 0, $additionalNodeList);
}
if (count($nodeList) == 0) {
return false;
}
$nodeList = array_unique($nodeList);
eZDebug::accumulatorStop('node_cleanup_list');
eZDebugSetting::writeDebug('kernel-content-edit', count($nodeList), "count in nodeList");
$ini = eZINI::instance();
if ($ini->variable('ContentSettings', 'StaticCache') == 'enabled') {
$optionArray = array('iniFile' => 'site.ini', 'iniSection' => 'ContentSettings', 'iniVariable' => 'StaticCacheHandler');
$options = new ezpExtensionOptions($optionArray);
$staticCacheHandler = eZExtension::getHandlerClass($options);
$staticCacheHandler->generateAlwaysUpdatedCache();
$staticCacheHandler->generateNodeListCache($nodeList);
}
eZDebug::accumulatorStart('node_cleanup', '', 'Node cleanup');
$nodeList = ezpEvent::getInstance()->filter('content/cache', $nodeList);
eZContentObject::expireComplexViewModeCache();
$cleanupValue = eZContentCache::calculateCleanupValue(count($nodeList));
if (eZContentCache::inCleanupThresholdRange($cleanupValue)) {
eZContentCache::cleanup($nodeList);
} else {
eZDebug::writeDebug("Expiring all view cache since list of nodes({$cleanupValue}) related to object({$objectID}) exeeds site.ini\\[ContentSettings]\\CacheThreshold", __METHOD__);
eZContentObject::expireAllViewCache();
}
eZDebug::accumulatorStop('node_cleanup');
return true;
}
示例3: clearObjectViewCache
static function clearObjectViewCache( $objectIDList, $versionNum = true, $additionalNodeList = false )
{
eZDebug::accumulatorStart( 'node_cleanup_list', '', 'Node cleanup list' );
$nodeList = array();
foreach ($objectIDList as $objectID)
{
$tmp = eZContentCacheManager::nodeList( $objectID, $versionNum );
if (is_array($tmp) )
{
$nodeList = array_merge($nodeList, $tmp);
}
}
if ( $nodeList === false and !is_array( $additionalNodeList ) )
{
return false;
}
if ( $nodeList === false )
{
$nodeList = array();
}
if ( is_array( $additionalNodeList ) )
{
array_splice( $nodeList, count( $nodeList ), 0, $additionalNodeList );
}
if ( count( $nodeList ) == 0 )
{
return false;
}
$nodeList = array_unique( $nodeList );
eZDebug::accumulatorStop( 'node_cleanup_list' );
eZDebugSetting::writeDebug( 'kernel-content-edit', count( $nodeList ), "count in nodeList" );
$ini = eZINI::instance();
if ( $ini->variable( 'ContentSettings', 'StaticCache' ) == 'enabled' )
{
$staticCache = new eZStaticCache();
$staticCache->generateAlwaysUpdatedCache();
$staticCache->generateNodeListCache( $nodeList );
}
eZDebug::accumulatorStart( 'node_cleanup', '', 'Node cleanup' );
eZContentObject::expireComplexViewModeCache();
$cleanupValue = eZContentCache::calculateCleanupValue( count( $nodeList ) );
if ( eZContentCache::inCleanupThresholdRange( $cleanupValue ) )
{
eZContentCache::cleanup( $nodeList );
}
else
{
eZContentObject::expireAllViewCache();
}
eZDebug::accumulatorStop( 'node_cleanup' );
return true;
}