tpl = TEMPLATE.'setting/'; $this->display('index.php'); } /** * 用户首页展示 */ public function slider() { switch ($this->in['slider']) { case 'about':show_json(file_get_contents(LANGUAGE_PATH.LANGUAGE_TYPE.'/about.html'));break; case 'help':show_json(file_get_contents(LANGUAGE_PATH.LANGUAGE_TYPE.'/help.html'));break; case 'member':break; case 'fav':break; case 'user': case 'theme': case 'wall': show_json(array( 'setting_all' => $this->config['setting_all'], 'user' => $this->config['user'] )); break; case 'system': if($GLOBALS['is_root']){ if(isset($this->in['env_check'])){ show_json(php_env_check()); } $result = $this->config['setting_system']; unset($result['system_password']); show_json($result,true); }else{ show_json('error',false); } break; default:break; } } public function php_info(){ phpinfo(); } //管理员 系统设置全局数据 public function system_setting(){ $setting_file = USER_SYSTEM.'system_setting.php'; $data = json_decode($this->in['data'],true); if (!$data) { show_json($this->L['error'],false); } $setting = $GLOBALS['config']['setting_system']; foreach ($data as $key => $value){ if ($key=='menu') { $setting[$key] = $value; }else{ $setting[$key] = rawurldecode($value); } } //为了保存更多的数据;不直接覆盖文件 $data->setting_file; fileCache::save($setting_file,$setting); show_json($this->L['success']); } public function system_tools(){ $action = $this->in['action']; switch($action){ case 'clear_cache':$this->clear_cache();break; case 'clear_session':$this->clear_session();break; case 'clear_user_recycle':$this->clear_user_recycle();break; default:break; } show_json($this->L['success'],true); } private function clear_session(){ del_dir(KOD_SESSION); } private function clear_cache(){ del_dir(TEMP_PATH); mk_dir(TEMP_PATH.'log'); mk_dir(TEMP_PATH.'thumb'); mk_dir(TEMP_PATH.'others'); } private function clear_user_recycle(){ $sql = system_member::load_data(); $user_arr = $sql->get(); foreach ($user_arr as $key => $user) { $user_path = USER_PATH.$user['path']."/"; $path_arr = array( $user_path.'data/temp', $user_path.'data/share_temp', $user_path.'recycle_kod' ); foreach ($path_arr as $value) { del_dir($value); mk_dir($value); } } } /** * 参数设置 * 可以同时修改多个:key=a,b,c&value=1,2,3 * 防xss 做过滤 */ public function set(){ $file = USER.'data/config.php'; if (!path_writeable(iconv_system($file))) {//配置不可写 show_json($this->L['no_permission_write_file'],false); } $key = $this->in['k']; $value = $this->in['v']; if ($key !='' && $value != '') { $conf = $this->config['user']; if(!strpos($key,',')){//多个参数,value不能包含',' $conf[$key] = clear_html($value); }else{ $arr_k = explode(',', $key); $arr_v = explode(',',$value); $num = count($arr_k); for ($i=0; $i < $num; $i++) { $conf[$arr_k[$i]] = clear_html($arr_v[$i]); } } fileCache::save($file,$conf); show_json($this->L["setting_success"]); }else{ show_json($this->L['error'],false); } } }