本文整理汇总了PHP中SugarFeed::flushBackendCache方法的典型用法代码示例。如果您正苦于以下问题:PHP SugarFeed::flushBackendCache方法的具体用法?PHP SugarFeed::flushBackendCache怎么用?PHP SugarFeed::flushBackendCache使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类SugarFeed
的用法示例。
在下文中一共展示了SugarFeed::flushBackendCache方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: testflushBackendCache
public function testflushBackendCache()
{
//execute the method and test if it works and does not throws an exception.
try {
SugarFeed::flushBackendCache();
$this->assertTrue(true);
} catch (Exception $e) {
$this->fail();
}
}
示例2: foreach
// They are disabling something that was active before
SugarFeed::disableModuleFeed($module);
}
}
$admin->saveSetting('sugarfeed', 'enabled', '1');
} else {
$admin->saveSetting('sugarfeed', 'enabled', '0');
// Now we need to remove all of the logic hooks, so they don't continue to run
// We also need to leave the database alone, so they can enable/disable modules with the system disabled
$modulesWithFeeds = SugarFeed::getAllFeedModules();
foreach ($modulesWithFeeds as $currFeedModule) {
SugarFeed::disableModuleFeed($currFeedModule, FALSE);
}
}
$admin->retrieveSettings(FALSE, TRUE);
SugarFeed::flushBackendCache();
} else {
if ($_REQUEST['process'] == 'deleteRecords') {
if (!isset($db)) {
$db = DBManagerFactory::getInstance();
}
$db->query("UPDATE sugarfeed SET deleted = '1'");
echo translate('LBL_RECORDS_DELETED', 'SugarFeed');
}
}
if ($_REQUEST['process'] == 'true' || $_REQUEST['process'] == 'false') {
header('Location: index.php?module=Administration&action=index');
return;
}
}
$sugar_smarty = new Sugar_Smarty();
示例3: clearSugarFeedCache
public function clearSugarFeedCache()
{
global $mod_strings;
if ($this->show_output) {
echo "<h3>{$mod_strings['LBL_QR_CLEARSUGARFEEDCACHE']}</h3>";
}
SugarFeed::flushBackendCache();
}
示例4: display
/**
* @see SugarView::display()
*/
public function display()
{
global $mod_strings, $app_strings;
$admin = new Administration();
$admin->retrieveSettings();
// Handle posts
if (!empty($_REQUEST['process'])) {
// Check the cleanup logic hook, make sure it is still there
check_logic_hook_file('Users', 'after_login', array(1, 'SugarFeed old feed entry remover', 'modules/SugarFeed/SugarFeedFlush.php', 'SugarFeedFlush', 'flushStaleEntries'));
// We have data posted
if ($_REQUEST['process'] == 'true') {
// They want us to process it, the false will just fall outside of this statement
if ($_REQUEST['feed_enable'] == '1') {
// The feed is enabled, pay attention to what categories should be enabled or disabled
$db = DBManagerFactory::getInstance();
$ret = $db->query("SELECT * FROM config WHERE category = 'sugarfeed' AND name LIKE 'module_%'");
$current_modules = array();
while ($row = $db->fetchByAssoc($ret)) {
$current_modules[$row['name']] = $row['value'];
}
$active_modules = $_REQUEST['modules'];
if (!is_array($active_modules)) {
$active_modules = array();
}
foreach ($active_modules as $name => $is_active) {
$module = substr($name, 7);
if ($is_active == '1') {
// They are activating something that was disabled before
SugarFeed::activateModuleFeed($module);
} else {
// They are disabling something that was active before
SugarFeed::disableModuleFeed($module);
}
}
$admin->saveSetting('sugarfeed', 'enabled', '1');
} else {
$admin->saveSetting('sugarfeed', 'enabled', '0');
// Now we need to remove all of the logic hooks, so they don't continue to run
// We also need to leave the database alone, so they can enable/disable modules with the system disabled
$modulesWithFeeds = SugarFeed::getAllFeedModules();
foreach ($modulesWithFeeds as $currFeedModule) {
SugarFeed::disableModuleFeed($currFeedModule, FALSE);
}
}
$admin->retrieveSettings(FALSE, TRUE);
SugarFeed::flushBackendCache();
} else {
if ($_REQUEST['process'] == 'deleteRecords') {
if (!isset($db)) {
$db = DBManagerFactory::getInstance();
}
$db->query("UPDATE sugarfeed SET deleted = '1'");
echo translate('LBL_RECORDS_DELETED', 'SugarFeed');
}
}
if ($_REQUEST['process'] == 'true' || $_REQUEST['process'] == 'false') {
header('Location: index.php?module=Administration&action=index');
return;
}
}
$sugar_smarty = new Sugar_Smarty();
$sugar_smarty->assign('mod', $mod_strings);
$sugar_smarty->assign('app', $app_strings);
if (isset($admin->settings['sugarfeed_enabled']) && $admin->settings['sugarfeed_enabled'] == '1') {
$sugar_smarty->assign('enabled_checkbox', 'checked');
}
$possible_feeds = SugarFeed::getAllFeedModules();
$module_list = array();
$userFeedEnabled = 0;
foreach ($possible_feeds as $module) {
$currModule = array();
if (isset($admin->settings['sugarfeed_module_' . $module]) && $admin->settings['sugarfeed_module_' . $module] == '1') {
$currModule['enabled'] = 1;
} else {
$currModule['enabled'] = 0;
}
$currModule['module'] = $module;
if ($module == 'UserFeed') {
// Fake module, need to handle specially
$userFeedEnabled = $currModule['enabled'];
continue;
} else {
$currModule['label'] = $GLOBALS['app_list_strings']['moduleList'][$module];
}
$module_list[] = $currModule;
}
$sugar_smarty->assign('module_list', $module_list);
$sugar_smarty->assign('user_feed_enabled', $userFeedEnabled);
echo getClassicModuleTitle("Administration", array("<a href='index.php?module=Administration&action=index'>" . translate('LBL_MODULE_NAME', 'Administration') . "</a>", $mod_strings['LBL_MODULE_NAME']), false);
$sugar_smarty->display('modules/SugarFeed/tpls/AdminSettings.tpl');
}