本文整理汇总了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);