123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- <?php
- /**
- * [WeEngine System] Copyright (c) 2014 WE7.CC
- * WeEngine is NOT a free software, it under the license terms, visited http://www.we7.cc/ for more details.
- */
- defined('IN_IA') or exit('Access Denied');
- load()->model('system');
- $dos = array('copyright');
- $do = in_array($do, $dos) ? $do : 'copyright';
- $_W['page']['title'] = '站点设置 - 工具 - 系统管理';
- $settings = $_W['setting']['copyright'];
- if(empty($settings) || !is_array($settings)) {
- $settings = array();
- } else {
- $settings['slides'] = iunserializer($settings['slides']);
- }
- $path = IA_ROOT . '/web/themes/';
- if(is_dir($path)) {
- if ($handle = opendir($path)) {
- while (false !== ($templatepath = readdir($handle))) {
- if ($templatepath != '.' && $templatepath != '..') {
- if(is_dir($path.$templatepath)){
- $template[] = $templatepath;
- }
- }
- }
- }
- }
- if ($do == 'copyright') {
-
- $template_ch_name = system_template_ch_name();
-
- if (checksubmit('submit')) {
-
- $data = array(
- 'status' => intval($_GPC['status']),
- 'verifycode' => intval($_GPC['verifycode']),
- 'reason' => trim($_GPC['reason']),
- 'sitename' => trim($_GPC['sitename']),
- 'url' => (strexists($_GPC['url'], 'http://') || strexists($_GPC['url'], 'https://')) ? $_GPC['url'] : "http://{$_GPC['url']}",
- 'statcode' => preg_match('/https\:\/\/hm\.baidu\.com\/hm\.js\?/', $_GPC['statcode']) ? htmlspecialchars_decode($_GPC['statcode']) : safe_gpc_html(htmlspecialchars_decode($_GPC['statcode'])),
- 'footerleft' => safe_gpc_html(htmlspecialchars_decode($_GPC['footerleft'])),
- 'footerright' => safe_gpc_html(htmlspecialchars_decode($_GPC['footerright'])),
- 'icon' => trim($_GPC['icon']),
- 'flogo' => trim($_GPC['flogo']),
- 'background_img' => trim($_GPC['background_img']),
- 'slides' => iserializer($_GPC['slides']),
- 'notice' => trim($_GPC['notice']),
- 'blogo' => trim($_GPC['blogo']),
- 'baidumap' => $_GPC['baidumap'],
- 'company' => trim($_GPC['company']),
- 'companyprofile' => safe_gpc_html(htmlspecialchars_decode($_GPC['companyprofile'])),
- 'address' => trim($_GPC['address']),
- 'person' => trim($_GPC['person']),
- 'phone' => trim($_GPC['phone']),
- 'qq' => trim($_GPC['qq']),
- 'email' => trim($_GPC['email']),
- 'keywords' => trim($_GPC['keywords']),
- 'description' => trim($_GPC['description']),
- 'showhomepage' => intval($_GPC['showhomepage']),
- 'leftmenufixed' => (!empty($_GPC['leftmenu_fixed'])) ? 1 : 0,
- 'mobile_status' => $_GPC['mobile_status'],
- 'login_type' => $_GPC['login_type'],
- 'icp' => safe_gpc_string($_GPC['icp']),
- 'bind' => $_GPC['bind']
- );
-
-
- $test = setting_save($data, 'copyright');
-
- $template = trim($_GPC['template']);
- setting_save(array('template' => $template), 'basic');
-
- itoast('更新设置成功!', url('system/site'), 'success');
- }
- }
- template('system/site');
|