当前位置: 首页>>代码示例>>PHP>>正文


PHP vmc::set_online方法代码示例

本文整理汇总了PHP中vmc::set_online方法的典型用法代码示例。如果您正苦于以下问题:PHP vmc::set_online方法的具体用法?PHP vmc::set_online怎么用?PHP vmc::set_online使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在vmc的用法示例。


在下文中一共展示了vmc::set_online方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: install

 public function install($app_id, $options = null, $auto_enable = 1)
 {
     $app = app::get($app_id);
     if (!file_exists(APP_DIR . '/' . $app_id . '/app.xml')) {
         if (!$this->download($app_id)) {
             logger::info('Application package can not be download.');
             return false;
         }
     }
     if ($app_id != 'base' || app::get('base')->status() != 'uninstalled') {
         $rows = vmc::database()->select('select * from vmc_base_apps where app_id="' . $app_id . '"');
         if (isset($rows[0]) && $rows[0]['status'] != 'uninstalled') {
             logger::info('Application package Already installed');
             return false;
         }
         $app_self_detector = null;
         vmc::database()->exec('update vmc_base_apps set status="installing" where app_id="' . $app_id . '" and status="uninstalled" ');
     }
     $app->runtask('pre_install', $options);
     vmc::singleton('base_application_dbtable')->clear_by_app($app_id);
     //清除冗余表信息
     foreach ($this->content_detector($app_id) as $detector) {
         foreach ($detector->detect($app) as $name => $item) {
             $item->install();
         }
         vmc::set_online(true);
         base_kvstore::instance('system')->store('service_last_modified.' . get_class($detector) . '.' . $app_id, $detector->last_modified($app_id));
     }
     //todo:clear service cache... 如果以后做了缓存的话...
     //用自己新安装的资源探测器,安装自己的资源
     foreach (vmc::servicelist('app_content_detector') as $k => $detector) {
         if ($detector->app->app_id == $app_id) {
             //遍历所有已经安装的app
             foreach ($detector->detect($app) as $name => $item) {
                 $item->install();
             }
             base_kvstore::instance('system')->store('service_last_modified.' . get_class($detector) . '.' . $app_id, $detector->last_modified($app_id));
         }
     }
     app::get('base')->model('apps')->replace(array('status' => 'installed', 'app_id' => $app_id, 'dbver' => $app->define('version')), array('app_id' => $app_id));
     $this->update_local_app_info($app_id);
     $app->runtask('post_install', $options);
     if ($auto_enable) {
         $this->enable($app_id);
     }
     logger::info('Application ' . $app_id . ' installed... ok.');
 }
开发者ID:yindonghai,项目名称:msk.com,代码行数:47,代码来源:manage.php

示例2: post_install

 public function post_install()
 {
     vmc::singleton('base_application_manage')->sync();
     vmc::set_online(true);
 }
开发者ID:yindonghai,项目名称:msk.com,代码行数:5,代码来源:task.php


注:本文中的vmc::set_online方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。