本文整理汇总了PHP中CRM_Core_OptionGroup::flushAll方法的典型用法代码示例。如果您正苦于以下问题:PHP CRM_Core_OptionGroup::flushAll方法的具体用法?PHP CRM_Core_OptionGroup::flushAll怎么用?PHP CRM_Core_OptionGroup::flushAll使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CRM_Core_OptionGroup
的用法示例。
在下文中一共展示了CRM_Core_OptionGroup::flushAll方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: flushCache
/**
* Reset the various system caches and some important static variables.
*/
public static function flushCache()
{
// flush out all cache entries so we can reload new data
// a bit aggressive, but livable for now
$cache = CRM_Utils_Cache::singleton();
$cache->flush();
// also reset the various static memory caches
// reset the memory or array cache
CRM_Core_BAO_Cache::deleteGroup('contact fields', NULL, FALSE);
// reset ACL cache
CRM_ACL_BAO_Cache::resetCache();
// reset various static arrays used here
CRM_Contact_BAO_Contact::$_importableFields = CRM_Contact_BAO_Contact::$_exportableFields = CRM_Contribute_BAO_Contribution::$_importableFields = CRM_Contribute_BAO_Contribution::$_exportableFields = CRM_Pledge_BAO_Pledge::$_exportableFields = CRM_Contribute_BAO_Query::$_contributionFields = CRM_Core_BAO_CustomField::$_importFields = CRM_Core_BAO_Cache::$_cache = CRM_Core_DAO::$_dbColumnValueCache = NULL;
CRM_Core_OptionGroup::flushAll();
CRM_Utils_PseudoConstant::flushAll();
}
示例2: flush
/**
* Flush given pseudoconstant so it can be reread from db
* nex time it's requested.
*
* @access public
* @static
*
* @param boolean $name pseudoconstant to be flushed
*
*/
public static function flush($name = 'cache')
{
if (isset(self::${$name})) {
self::${$name} = NULL;
}
if ($name == 'cache') {
CRM_Core_OptionGroup::flushAll();
}
}