当前位置: 首页>>代码示例>>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;未经允许,请勿转载。