KodExplorer/controller/setting.class.php

92 lines
2.6 KiB
PHP
Raw Normal View History

2015-03-22 20:54:54 +00:00
<?php
/*
* @link http://www.kalcaddle.com/
* @author warlee | e-mail:kalcaddle@qq.com
* @copyright warlee 2014.(Shanghai)Co.,Ltd
* @license http://kalcaddle.com/tools/licenses/license.txt
*/
class setting extends Controller{
private $sql;
function __construct(){
parent::__construct();
}
/**
* 用户首页展示
*/
public function index() {
$this->tpl = TEMPLATE.'setting/';
$this->display('index.php');
}
/**
* 用户首页展示
*/
public function slider() {
$this->tpl = TEMPLATE . 'setting/slider/';
$this->display($this->in['slider'].'.php');
}
public function php_info(){
phpinfo();
}
public function get_setting(){
$setting = $GLOBALS['config']['setting_system']['menu'];
2015-03-31 04:29:36 +00:00
if (!$setting) {
$setting = $this->config['setting_menu_default'];
}
2015-03-22 20:54:54 +00:00
show_json($setting);
}
//管理员 系统设置全局数据
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){
2015-03-31 04:29:36 +00:00
if ($key=='menu') {
$setting[$key] = $value;
}else{
$setting[$key] = rawurldecode($value);
}
2015-03-22 20:54:54 +00:00
}
//$setting['menu'] = $GLOBALS['config']['setting_menu_default'];
//为了保存更多的数据;不直接覆盖文件 $data->setting_file;
fileCache::save($setting_file,$setting);
show_json($this->L['success']);
//show_json($setting);
}
/**
* 参数设置
* 可以同时修改多个key=a,b,c&value=1,2,3
*/
public function set(){
$file = $this->config['user_seting_file'];
if (!is_writeable($file)) {//配置不可写
show_json($this->L['no_permission_write_file'],false);
2015-03-22 20:54:54 +00:00
}
$key = $this->in['k'];
$value = $this->in['v'];
if ($key !='' && $value != '') {
$conf = $this->config['user'];
$arr_k = explode(',', $key);
$arr_v = explode(',',$value);
$num = count($arr_k);
for ($i=0; $i < $num; $i++) {
$conf[$arr_k[$i]] = $arr_v[$i];
}
fileCache::save($file,$conf);
show_json($this->L["setting_success"]);
}else{
show_json($this->L['error'],false);
}
}
}