IsLogin(); // 权限校验 $this->IsPower(); } /** * [Index 首页] * @author Devil * @blog http://gong.gg/ * @version 0.0.1 * @datetime 2017-02-26T19:13:29+0800 */ public function Index() { // 缓存类型 MyViewAssign('cache_type_list', CacheService::AdminCacheTypeList()); return MyView(); } /** * [StatusUpdate 站点缓存更新] * @author Devil * @blog http://gong.gg/ * @version 0.0.1 * @datetime 2017-02-26T19:53:14+0800 */ public function StatusUpdate() { // 模板 cache // 系统配置缓存 data \base\FileUtil::UnlinkDir(ROOT.'runtime'.DS.'cache'); \base\FileUtil::UnlinkDir(ROOT.'runtime'.DS.'data'); return $this->success('更新成功'); } /** * [TemplateUpdate 模板缓存更新] * @author Devil * @blog http://gong.gg/ * @version 0.0.1 * @datetime 2017-02-26T19:53:14+0800 */ public function TemplateUpdate() { // 模板 cache \base\FileUtil::UnlinkDir(ROOT.'runtime'.DS.'index'.DS.'temp'); \base\FileUtil::UnlinkDir(ROOT.'runtime'.DS.'api'.DS.'temp'); return $this->success('更新成功'); } /** * [ModuleUpdate 模块缓存更新] * @author Devil * @blog http://gong.gg/ * @version 0.0.1 * @datetime 2017-02-26T19:53:14+0800 */ public function ModuleUpdate() { return $this->success('更新成功'); } /** * [LogDelete 日志删除] * @author Devil * @blog http://gong.gg/ * @version 0.0.1 * @datetime 2017-02-26T19:53:14+0800 */ public function LogDelete() { \base\FileUtil::UnlinkDir(ROOT.'runtime'.DS.'admin'.DS.'log'); \base\FileUtil::UnlinkDir(ROOT.'runtime'.DS.'index'.DS.'log'); \base\FileUtil::UnlinkDir(ROOT.'runtime'.DS.'api'.DS.'log'); return $this->success('更新成功'); } } ?>