本文整理匯總了PHP中Base_ThemeCommon::themeup方法的典型用法代碼示例。如果您正苦於以下問題:PHP Base_ThemeCommon::themeup方法的具體用法?PHP Base_ThemeCommon::themeup怎麽用?PHP Base_ThemeCommon::themeup使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Base_ThemeCommon
的用法示例。
在下文中一共展示了Base_ThemeCommon::themeup方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: action
public function action()
{
set_time_limit(0);
Cache::clear();
ModuleManager::create_common_cache();
Base_ThemeCommon::themeup();
return true;
}
示例2: action
public function action()
{
$success = true;
ini_set('display_errors', true);
set_time_limit(0);
switch ($this->get_step()) {
case 1:
$this->_patches_ran = PatchUtil::apply_new();
$this->set_next_step(2);
break;
case 2:
ModuleManager::create_common_cache();
Base_ThemeCommon::themeup();
Base_LangCommon::update_translations();
Cache::clear();
break;
}
return $success;
}
示例3: perform_update_end
protected function perform_update_end()
{
$this->turn_on_maintenance_mode();
Base_ThemeCommon::themeup();
Base_LangCommon::update_translations();
ModuleManager::create_load_priority_array();
Variable::set('version', EPESI_VERSION);
MaintenanceMode::turn_off();
}
示例4: define
<?php
define('CID', false);
require_once '../../../include.php';
ModuleManager::load_modules();
if (!Acl::i_am_admin()) {
die("Access forbidden");
}
function ret($val)
{
print $val;
exit;
}
try {
$patches = PatchUtil::apply_new();
} catch (ErrorException $e) {
ret($e->getMessage());
}
ModuleManager::create_common_cache();
Base_ThemeCommon::themeup();
Base_LangCommon::update_translations();
foreach ($patches as $patch) {
if ($patch->get_apply_status() !== Patch::STATUS_SUCCESS) {
ret(0);
}
}
ret(1);