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


PHP Storage::has方法代码示例

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


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

示例1: checkCache

 /**
  * 检查缓存文件是否有效
  * 如果无效则需要重新编译
  * @access public
  * @param string $tmplTemplateFile 模板文件名
  * @return boolean
  */
 protected function checkCache($tmplTemplateFile, $prefix = '')
 {
     if (!C('TMPL_CACHE_ON')) {
         // 优先对配置设定检测
         return false;
     }
     $tmplCacheFile = C('CACHE_PATH') . $prefix . md5($tmplTemplateFile) . C('TMPL_CACHFILE_SUFFIX');
     if (!Storage::has($tmplCacheFile)) {
         return false;
     } elseif (filemtime($tmplTemplateFile) > Storage::get($tmplCacheFile, 'mtime')) {
         // 模板文件如果有更新则缓存需要更新
         return false;
     } elseif (C('TMPL_CACHE_TIME') != 0 && time() > Storage::get($tmplCacheFile, 'mtime') + C('TMPL_CACHE_TIME')) {
         // 缓存是否在有效期
         return false;
     }
     // 开启布局模板
     if (C('LAYOUT_ON')) {
         $layoutFile = THEME_PATH . C('LAYOUT_NAME') . C('TMPL_TEMPLATE_SUFFIX');
         if (filemtime($layoutFile) > Storage::get($tmplCacheFile, 'mtime')) {
             return false;
         }
     }
     // 缓存有效
     return true;
 }
开发者ID:Aaron-zh,项目名称:ThinkPHPFull,代码行数:33,代码来源:ParseTemplateBehavior.class.php

示例2: index

 public function index()
 {
     if (Storage::has('./Data/install.lock')) {
         $this->error('已经安装过,请删除Data/install.lock再安装');
     }
     $this->display();
 }
开发者ID:walkingmanc,项目名称:weshop,代码行数:7,代码来源:IndexController.class.php

示例3: index

 public function index()
 {
     if (Storage::has(MODULE_PATH . 'Data/install.lock')) {
         $this->error('已经成功安装了OneThink,请不要重复安装!');
     }
     $this->display();
 }
开发者ID:kuanglitang,项目名称:klt,代码行数:7,代码来源:IndexController.class.php

示例4: _initialize

 protected function _initialize()
 {
     if (Storage::has('./Conf/install.lock')) {
         $this->error('已经成功安装了本系统,请不要重复安装!', U('Home/Index/index'));
     } elseif ($_SERVER[ENV_PRE . 'DEV_MODE'] == true) {
         $this->error('系统处于开发模式,无需安装!', U('Home/Index/index'));
     }
 }
开发者ID:sayi21cn,项目名称:corethink,代码行数:8,代码来源:InstallController.class.php

示例5: _initialize

 protected function _initialize()
 {
     if (session('step') === null) {
         session('step', 0);
     }
     if (Storage::has(MODULE_PATH . 'Data/install.lock')) {
         $this->error('已经成功安装了系统,请不要重复安装!', U('Home/Index/index'));
     }
 }
开发者ID:h136799711,项目名称:201507banma,代码行数:9,代码来源:InstallController.class.php

示例6: _initialize

 protected function _initialize()
 {
     if (session('step') === null) {
         $this->redirect('Index/index');
     }
     if (Storage::has(MODULE_PATH . 'Data/install.lock')) {
         $this->error('已经成功安装了Zcms,请不要重复安装!');
     }
 }
开发者ID:tiger2soft,项目名称:thinkphp-zcms,代码行数:9,代码来源:InstallController.class.php

示例7: index

 public function index()
 {
     if (Storage::has(MODULE_PATH . 'Data/install.lock')) {
         $this->error('已经成功安装了WeiPHP,请不要重复安装!');
     }
     session('step', 0);
     session('error', false);
     $this->display();
 }
开发者ID:devsnippet,项目名称:wechatTools,代码行数:9,代码来源:IndexController.class.php

示例8: index

 public function index()
 {
     if (Storage::has(MODULE_PATH . 'Data/install.lock')) {
         $this->error('已经成功安装了系统,请不要重复安装!', U('Index/error'));
     }
     session_destroy();
     session_start();
     session('step', 0);
     session('error', false);
     $this->display();
 }
开发者ID:h136799711,项目名称:201507lanbao,代码行数:11,代码来源:IndexController.class.php

示例9: index

 public function index()
 {
     if (Storage::has(APP_PATH . 'Common/Conf/install.lock')) {
         $this->error('已经成功安装了Gms管理系统,请不要重复安装!');
     }
     session_destroy();
     session_start();
     session('step', 0);
     session('error', false);
     $this->display();
 }
开发者ID:hacklx,项目名称:koala-frame,代码行数:11,代码来源:IndexController.class.php

示例10: _initialize

 protected function _initialize()
 {
     $no_verify = array('index', 'step1', 'complete');
     if (in_array(ACTION_NAME, $no_verify)) {
         return true;
     }
     if (Storage::has(APP_PATH . 'Common/Conf/install.lock')) {
         $this->error('已经成功安装了本系统,请不要重复安装!', U('Home/Index/index'));
     } elseif ($_SERVER[ENV_PRE . 'DEV_MODE'] === 'true') {
         $this->error('系统处于开发模式,无需安装!', U('Home/Index/index'));
     }
 }
开发者ID:varphper,项目名称:corethink,代码行数:12,代码来源:IndexController.class.php

示例11: getAll

 /**
  * 获取模块列表
  * @param string $addon_dir
  * @author jry <598821125@qq.com>
  */
 public function getAll()
 {
     //获取除了Common等系统模块外的用户模块(文件夹下必须有$install_file定义的安装描述文件)
     $dirs = array_map('basename', glob(APP_PATH . '*', GLOB_ONLYDIR));
     foreach ($dirs as $dir) {
         $config_file = realpath(APP_PATH . $dir) . '/' . $this->install_file();
         if (Storage::has($config_file)) {
             $module_dir_list[] = $dir;
             $temp_arr = (include $config_file);
             $temp_arr['info']['status'] = -1;
             //未安装
             $module_list[$temp_arr['info']['name']] = $temp_arr['info'];
         }
     }
     //获取系统已经安装的模块信息
     $installed_module_list = $this->field(true)->order('sort asc,id desc')->select();
     if ($installed_module_list) {
         foreach ($installed_module_list as &$module) {
             $module_list[$module['name']] = $module;
         }
         //系统已经安装的模块信息与文件夹下模块信息合并
         $module_list = array_merge($module_list, $module_list);
     }
     foreach ($module_list as &$val) {
         switch ($val['status']) {
             case '-2':
                 //损坏
                 $val['status'] = '<span class="text-danger">损坏</span>';
                 $val['right_button'] = '<a class="label label-danger ajax-get" href="' . U('setStatus', array('status' => 'delete', 'ids' => $val['id'])) . '">删除记录</a>';
                 break;
             case '-1':
                 //未安装
                 $val['status'] = '<i class="fa fa-download text-success"></i>';
                 $val['right_button'] = '<a class="label label-success ajax-get" href="' . U('install?name=' . $val['name']) . '">安装</a>';
                 break;
             case '0':
                 //禁用
                 $val['status'] = '<i class="fa fa-ban text-danger"></i>';
                 $val['right_button'] .= '<a class="label label-info ajax-get" href="' . U('updateInfo?id=' . $val['id']) . '">更新菜单</a> ';
                 $val['right_button'] .= '<a class="label label-success ajax-get" href="' . U('setStatus', array('status' => 'resume', 'ids' => $val['id'])) . '">启用</a> ';
                 $val['right_button'] .= '<a class="label label-danger ajax-get" href="' . U('uninstall', array('id' => $val['id'])) . '">卸载</a> ';
                 break;
             case '1':
                 //正常
                 $val['status'] = '<i class="fa fa-check text-success"></i>';
                 $val['right_button'] .= '<a class="label label-info ajax-get" href="' . U('updateInfo?id=' . $val['id']) . '">更新菜单</a> ';
                 $val['right_button'] .= '<a class="label label-warning ajax-get" href="' . U('setStatus', array('status' => 'forbid', 'ids' => $val['id'])) . '">禁用</a> ';
                 $val['right_button'] .= '<a class="label label-danger ajax-get" href="' . U('uninstall', array('id' => $val['id'])) . '">卸载</a> ';
                 break;
         }
     }
     return $module_list;
 }
开发者ID:varphper,项目名称:corethink,代码行数:58,代码来源:SystemModuleModel.class.php

示例12: getAll

 /**
  * 获取主题列表
  * @param string $addon_dir
  * @author jry <598821125@qq.com>
  */
 public function getAll()
 {
     //获取所有主题(文件夹下必须有$install_file定义的安装描述文件)
     $path = './Theme/';
     $dirs = array_map('basename', glob($path . '*', GLOB_ONLYDIR));
     foreach ($dirs as $dir) {
         $config_file = realpath($path . $dir) . '/' . $this->install_file();
         if (Storage::has($config_file)) {
             $theme_dir_list[] = $dir;
             $temp_arr = (include $config_file);
             $temp_arr['info']['status'] = -1;
             //未安装
             $theme_list[$temp_arr['info']['name']] = $temp_arr['info'];
         }
     }
     // 获取系统已经安装的主题信息
     if ($theme_dir_list) {
         $map['name'] = array('in', $theme_dir_list);
     } else {
         return false;
     }
     $installed_theme_list = $this->where($map)->field(true)->order('sort asc,id desc')->select();
     if ($installed_theme_list) {
         foreach ($installed_theme_list as $theme) {
             $theme_list[$theme['name']] = $theme;
         }
         //系统已经安装的主题信息与文件夹下主题信息合并
         $theme_list = array_merge($theme_list, $theme_list);
     }
     foreach ($theme_list as &$val) {
         switch ($val['status']) {
             case '-1':
                 //未安装
                 $val['status'] = '<i class="fa fa-download" style="color:green"></i>';
                 $val['right_button'] = '<a class="label label-success ajax-get" href="' . U('install?name=' . $val['name']) . '">安装</a>';
                 break;
             default:
                 $val['status'] = '<i class="fa fa-check" style="color:green"></i>';
                 if ($val['current']) {
                     $val['right_button'] .= '<span class="label label-success" href="#">我是当前主题</span> ';
                 } else {
                     $val['right_button'] .= '<a class="label label-danger ajax-get" href="' . U('setCurrent', array('id' => $val['id'])) . '">设为当前主题</a> ';
                 }
                 $val['right_button'] .= '<a class="label label-info ajax-get" href="' . U('updateInfo?id=' . $val['id']) . '">更新信息</a> ';
                 $val['right_button'] .= '<a class="label label-primary" href="' . U('edit?id=' . $val['id']) . '">编辑</a> ';
                 $val['right_button'] .= '<a class="label label-danger ajax-get" href="' . U('uninstall', array('id' => $val['id'])) . '">卸载</a> ';
                 break;
         }
     }
     return $theme_list;
 }
开发者ID:hujun123qwe,项目名称:plover,代码行数:56,代码来源:ThemeModel.class.php

示例13: getAllModule

 /**
  * 获取模块列表
  * @param string $addon_dir
  */
 public function getAllModule()
 {
     //获取除了Common等系统模块外的用户模块(文件夹下必须有oneshop.php)
     $dirs = array_map('basename', glob(APP_PATH . '*', GLOB_ONLYDIR));
     foreach ($dirs as $dir) {
         $config_file = realpath(APP_PATH . $dir) . '/oneshop.php';
         if (Storage::has($config_file)) {
             $module_dir_list[] = $dir;
             $temp_arr = (include $config_file);
             $temp_arr['info']['status'] = -1;
             //未安装
             $module_list[$temp_arr['info']['name']] = $temp_arr['info'];
         }
     }
     //获取系统已经安装的模块信息
     if ($module_dir_list) {
         $map['name'] = array('in', $module_dir_list);
     }
     $installed_module_list = $this->where($map)->field(true)->order('sort asc,id desc')->select();
     if ($installed_module_list) {
         foreach ($installed_module_list as $module) {
             $module_list[$module['name']] = $module;
         }
         //系统已经安装的模块信息与文件夹下模块信息合并
         $module_list = array_merge($module_list, $module_list);
     }
     foreach ($module_list as &$val) {
         switch ($val['status']) {
             case '-1':
                 //未安装
                 $val['status'] = '<i class="glyphicon glyphicon-download-alt" style="color:green"></i>';
                 $val['right_button'] = '<a class="ajax-get" href="' . U('install?name=' . $val['name']) . '">安装</a>';
                 break;
             case '0':
                 //禁用
                 $val['status'] = '<i class="glyphicon glyphicon-ban-circle" style="color:red"></i>';
                 $val['right_button'] .= '<a class="ajax-get" href="' . U('updateModuleInfo?id=' . $val['id']) . '">更新菜单</a> ';
                 $val['right_button'] .= '<a class="ajax-get" href="' . U('setStatus', array('status' => 'resume', 'ids' => $val['id'])) . '">启用</a> ';
                 $val['right_button'] .= '<a class="ajax-get" href="' . U('setStatus', array('status' => 'uninstall', 'ids' => $val['id'])) . '">卸载</a> ';
                 break;
             case '1':
                 //正常
                 $val['status'] = '<i class="glyphicon glyphicon-ok" style="color:green"></i>';
                 $val['right_button'] .= '<a class="ajax-get" href="' . U('updateModuleInfo?id=' . $val['id']) . '">更新菜单</a> ';
                 $val['right_button'] .= '<a class="ajax-get" href="' . U('setStatus', array('status' => 'forbid', 'ids' => $val['id'])) . '">禁用</a> ';
                 $val['right_button'] .= '<a class="ajax-get" href="' . U('setStatus', array('status' => 'uninstall', 'ids' => $val['id'])) . '">卸载</a> ';
                 break;
         }
     }
     return $module_list;
 }
开发者ID:zhendeguoke1008,项目名称:OneShop,代码行数:55,代码来源:ModuleModel.class.php

示例14: index

 public function index()
 {
     if (is_file('/Conf/user.php')) {
         // 已经安装过了 执行更新程序
         //session('update',true);
         $msg = '请删除install.lock文件后再运行安装程序!';
     } else {
         $msg = '已经成功安装,请不要重复安装!';
     }
     if (Storage::has('Conf/install.lock')) {
         $this->error($msg);
     }
     $this->display();
 }
开发者ID:terrydeng,项目名称:beimeibang1205,代码行数:14,代码来源:IndexController.class.php

示例15: index

 public function index()
 {
     if (is_file(APP_PATH . 'User/Conf/config.php')) {
         // 已经安装过了 执行更新程序
         session('update', true);
         $msg = '请删除install.lock文件后再运行升级!';
     } else {
         $msg = '已经成功安装了PhPluSer,请不要重复安装!';
     }
     if (Storage::has('./Data/install.lock')) {
         $this->error($msg);
     }
     $this->display();
 }
开发者ID:terrydeng,项目名称:beimeibang1205,代码行数:14,代码来源:IndexController.class.php


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