當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Base_ThemeCommon::themeup方法代碼示例

本文整理匯總了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;
 }
開發者ID:cretzu89,項目名稱:EPESI,代碼行數:8,代碼來源:ThemeUp.php

示例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;
 }
開發者ID:cretzu89,項目名稱:EPESI,代碼行數:19,代碼來源:Patches.php

示例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();
    }
開發者ID:62BRAINS,項目名稱:EPESI,代碼行數:11,代碼來源:update.php

示例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);
開發者ID:cretzu89,項目名稱:EPESI,代碼行數:27,代碼來源:runpatches.php


注:本文中的Base_ThemeCommon::themeup方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。