123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324 |
- <?php
- defined('IN_PHPCMS') or exit('No permission resources.');
- pc_base::load_app_class('admin','admin',0);
- pc_base::load_sys_class('form', '', 0);
- class space extends admin {
- private $M, $db;
- function __construct() {
- parent::__construct();
- $setting = new_html_special_chars(getcache('poster', 'commons'));
- $this->M = $setting[$this->get_siteid()];
- $this->db = pc_base::load_model('poster_space_model');
- }
-
- public function init() {
- $TYPES = $this->template_type();
- $page = max(intval($_GET['page']), 1);
- $infos = $this->db->listinfo(array('siteid'=>$this->get_siteid()), '`spaceid`', $page);
- $pages = $this->db->pages;
- $big_menu = array('javascript:window.top.art.dialog({id:\'add\',iframe:\'?m=poster&c=space&a=add\', title:\''.L('add_space').'\', width:\'540\', height:\'320\'}, function(){var d = window.top.art.dialog({id:\'add\'}).data.iframe;var form = d.document.getElementById(\'dosubmit\');form.click();return false;}, function(){window.top.art.dialog({id:\'add\'}).close()});void(0);', L('add_space'));
- include $this->admin_tpl('space_list');
- }
-
- /**
- * 添加广告版块
- */
- public function add() {
- if (isset($_POST['dosubmit'])) {
- $space = $this->check($_POST['space']);
- $space['setting'] = array2string($_POST['setting']);
- $space['siteid'] = $this->get_siteid();
- $spaceid = $this->db->insert($space, true);
- if ($spaceid) {
- if ($space['type']=='code') {
- $path = '{show_ad('.$space['siteid'].', '.$spaceid.')}';
- } else {
- $path = 'poster_js/'.$spaceid.'.js';
- }
- $this->db->update(array('path'=>$path), array('siteid'=>$this->get_siteid(), 'spaceid'=>$spaceid));
- showmessage(L('added_successful'), '?m=poster&c=space', '', 'add');
- }
- } else {
- $TYPES = $this->template_type();
- $poster_template = getcache('poster_template_'.$this->get_siteid(), 'commons');
- $show_header = $show_validator = true;
- include $this->admin_tpl('space_add');
- }
- }
-
- /**
- * 编辑广告版位
- */
- public function edit() {
- $_GET['spaceid'] = intval($_GET['spaceid']);
- if (!$_GET['spaceid']) showmessage(L('illegal_operation'), HTTP_REFERER);
- if (isset($_POST['dosubmit'])) {
- $space = $this->check($_POST['space']);
- $space['setting'] = array2string($_POST['setting']);
- if ($space['type']=='code') {
- $space['path'] = '{show_ad('.$this->get_siteid().', '.$_GET['spaceid'].')}';
- } else {
- $space['path'] = 'poster_js/'.$_GET['spaceid'].'.js';
- }
- if (isset($_POST['old_type']) && $_POST['old_type']!=$space['type']) {
- $poster_db = pc_base::load_model('poster_model');
- $poster_db->delete(array('spaceid'=>$_GET['spaceid']));
- $space['items'] = 0;
- }
- if ($this->db->update($space, array('spaceid'=>$_GET['spaceid']))) showmessage(L('edited_successful'), '?m=poster&c=space', '', 'testIframe'.$_GET['spaceid']);
- } else {
- $info = $this->db->get_one(array('spaceid' => $_GET['spaceid']));
- $setting = string2array($info['setting']);
- $TYPES = $this->template_type();
- $poster_template = getcache('poster_template_'.$this->get_siteid(), 'commons');
- $show_header = $show_validator = true;
- include $this->admin_tpl('space_edit');
- }
- }
-
- /**
- * 广告版位调用代码
- */
- public function public_call() {
- $_GET['sid'] = intval($_GET['sid']);
- if (!$_GET['sid']) showmessage(L('illegal_action'), HTTP_REFERER, '', 'call');
- $r = $this->db->get_one(array('spaceid'=>$_GET['sid'], 'siteid'=>$this->get_siteid()));
- include $this->admin_tpl('space_call');
- }
-
- /**
- * 广告预览
- */
- public function public_preview() {
- if (is_numeric($_GET['spaceid'])) {
- $_GET['spaceid'] = intval($_GET['spaceid']);
- $r = $this->db->get_one(array('spaceid'=>$_GET['spaceid'], 'siteid'=>$this->get_siteid()));
- $scheme = $_SERVER['SERVER_PORT'] == '443' ? 'https://' : 'http://';
- if ($r['type']=='code') {
- $db = pc_base::load_model('poster_model');
- $rs = $db->get_one(array('spaceid'=>$r['spaceid'], 'siteid'=>$this->get_siteid()), 'setting', '`id` ASC');
- if ($rs['setting']) {
- $d = string2array($rs['setting']);
- $data = $d['code'];
- }
- } else {
- $path = APP_PATH.'caches/'.$r['path'];
- }
- include $this->admin_tpl('space_preview');
- }
- }
-
- private function template_type() {
- pc_base::load_app_func('global','poster');
- return get_types();
- }
-
- /**
- * 删除广告版位
- * @param intval $sid 广告版位的ID,当批量删除时系统会递归删除
- */
- public function delete() {
- if ((!isset($_GET['spaceid']) || empty($_GET['spaceid'])) && (!isset($_POST['spaceid']) || empty($_POST['spaceid']))) {
- showmessage(L('illegal_parameters'), HTTP_REFERER);
- } else {
- if (is_array($_POST['spaceid'])) {
- array_map(array($this, _del), $_POST['spaceid']); //如果是批量操作,则递归数组
- } elseif($_GET['spaceid']) {
- $_GET['spaceid'] = intval($_GET['spaceid']);
- $db = pc_base::load_model('poster_model');
- $db->delete(array('siteid'=>$this->get_siteid(), 'spaceid'=>$_GET['spaceid']));
- $this->db->delete(array('siteid'=>$this->get_siteid(), 'spaceid' => $_GET['spaceid']));
- }
- showmessage(L('operation_success'), HTTP_REFERER);
- }
- }
-
- /**
- * 广告位删除
- * @param intval $spaceid 专题ID
- */
- private function _del($spaceid = 0) {
- $spaceid = intval($spaceid);
- if (!$spaceid) return false;
- $db = pc_base::load_model('poster_model');
- $db->delete(array('siteid'=>$this->get_siteid(), 'spaceid'=>$spaceid));
- $this->db->delete(array('siteid'=>$this->get_siteid(), 'spaceid' => $spaceid));
- return true;
- }
-
- /**
- * 广告模块配置
- */
- public function setting() {
- if (isset($_POST['dosubmit'])) {
- $setting = getcache('poster', 'commons');
- $setting[$this->get_siteid()] = $_POST['setting'];
- setcache('poster', $setting, 'commons'); //设置缓存
- $m_db = pc_base::load_model('module_model'); //调用模块数据模型
- $setting = array2string($_POST['setting']);
-
- $m_db->update(array('setting'=>$setting), array('module'=>ROUTE_M)); //将配置信息存入数据表中
-
- showmessage(L('setting_updates_successful'), HTTP_REFERER, '', 'setting');
- } else {
- @extract($this->M);
- include $this->admin_tpl('setting');
- }
- }
-
- /**
- * 配置模板
- */
- public function poster_template() {
- $tpl_root = pc_base::load_config('system', 'tpl_root');
- $templatedir = PC_PATH.$tpl_root.pc_base::load_config('system', 'tpl_name').DIRECTORY_SEPARATOR.'poster'.DIRECTORY_SEPARATOR;
- $poster_template = getcache('poster_template_'.get_siteid(), 'commons');
- $templates = glob($templatedir.'*.html');
- if (is_array($templates) && !empty($templates)) {
- foreach ($templates as $k => $tem) {
- $templates[$k] = basename($tem, ".html");
- }
- }
- $big_menu = array('javascript:window.top.art.dialog({id:\'add\',iframe:\'?m=poster&c=space&a=add\', title:\''.L('add_space').'\', width:\'540\', height:\'320\'}, function(){var d = window.top.art.dialog({id:\'add\'}).data.iframe;var form = d.document.getElementById(\'dosubmit\');form.click();return false;}, function(){window.top.art.dialog({id:\'add\'}).close()});void(0);', L('add_space'));
- include $this->admin_tpl('poster_template');
- }
-
- /**
- * 删除模板配置
- */
- public function public_tempate_del() {
- if (!isset($_GET['id'])) showmessage(L('illegal_parameters'), HTTP_REFERER);
- $siteid = $this->get_siteid();
- $poster_template = getcache('poster_template_'.$siteid, 'commons');
- if ($poster_template[$_GET['id']]) {
- unset($poster_template[$_GET['id']]);
- }
- setcache('poster_template_'.$siteid, $poster_template, 'commons');
- showmessage(L('operation_success'), HTTP_REFERER);
- }
-
- /**
- * 配置模板
- */
- public function public_tempate_setting() {
- $siteid = $this->get_siteid();
- $poster_template = getcache('poster_template_'.$siteid, 'commons');
- if (isset($_POST['dosubmit'])) {
- if (is_array($_POST['info']['type']) && !empty($_POST['info']['type'])) {
- $type2name = array('images'=>L('photo'), 'flash'=>L('flash'), 'text'=>L('title'));
- $type = array();
- foreach ($_POST['info']['type'] as $t) {
- if (in_array($t, array('images', 'flash', 'text'))) {
- $type[$t] = $type2name[$t];
- } else {
- continue;
- }
- }
- }
- unset($_POST['info']['type']);
- $_POST['info']['type'] = $type;
- $poster_template[$_POST['template']] = $_POST['info'];
- setcache('poster_template_'.$siteid, $poster_template, 'commons');
- showmessage(L('setting_success'), '', '', 'testIframe');
- } else {
- if (!isset($_GET['template'])) {
- showmessage(L('illegal_parameters'));
- } else {
- $template = $_GET['template'];
- }
- if ($poster_template[$template]) {
- $info = $poster_template[$template];
- if (is_array($info['type']) && !empty($info['type'])) {
- $type = array();
- $type = array_keys($info['type']);
- unset($info['type']);
- $info['type'] = $type;
- }
- }
- include $this->admin_tpl('template_setting');
- }
- }
-
- /**
- * 更新js
- */
- public function create_js($page = 0) {
- $page = max(intval($_GET['page']), 1);
- if ($page==1) {
- $result = $this->db->get_one(array('disabled'=>0, 'siteid'=>get_siteid()), 'COUNT(*) AS num');
- if ($result['num']) {
- $total = $result['num'];
- $pages = ceil($total/20);
- }
- } else {
- $pages = $_GET['pages'] ? intval($_GET['pages']) : 0;
- }
- $offset = ($page-1)*20;
- $data = $this->db->listinfo(array('disabled'=>0, 'siteid'=>get_siteid()), 'spaceid ASC', $page);
- $html = pc_base::load_app_class('html');
- foreach ($data as $d) {
- if ($d['type']!='code') {
- $html->create_js($d['spaceid']);
- } else {
- continue;
- }
- }
- $page++;
- if ($page>$pages) {
- showmessage(L('update_js_success'), '?m=poster&c=space&a=init');
- } else {
- showmessage(L('update_js').'<font style="color:red">'.($page-1).'/'.$pages.'</font>', '?m=poster&c=space&a=create_js&page='.$page.'&pages='.$pages);
- }
- }
-
- /**
- * 检测版位名称是否存在
- */
- public function public_check_space() {
- if (!$_GET['name']) exit(0);
- if (pc_base::load_config('system', 'charset')=='gbk') {
- $_GET['name'] = iconv('UTF-8', 'GBK', $_GET['name']);
- }
- $name = $_GET['name'];
- if ($_GET['spaceid']) {
- $spaceid = intval($_GET['spaceid']);
- $r = $this->db->get_one(array('spaceid' => $spaceid, 'siteid'=>$this->get_siteid()));
- if ($r['name'] == $name) {
- exit('1');
- }
- }
- $r = $this->db->get_one(array('siteid' => $this->get_siteid(), 'name' => $name), 'spaceid');
- if ($r['spaceid']) {
- exit('0');
- } else {
- exit('1');
- }
- }
-
- /**
- * 检查表单数据
- * @param Array $data 表单传递过来的数组
- * @return Array 检查后的数组
- */
- private function check($data = array()) {
- if ($data['name'] == '') showmessage(L('name_plates_not_empty'));
- $info = $this->db->get_one(array('name'=>$data['name'], 'siteid'=>$this->get_siteid()), 'spaceid');
- if (($info['spaceid'] && $info['spaceid']!=$_GET['spaceid']) || ($info['spaceid'] && !isset($_GET['spaceid']))) {
- showmessage(L('space_exist'), HTTP_REFERER);
- }
- if ((!isset($data['width']) || $data['width']==0) && in_array($data['type'], array('banner', 'fixure', 'float', 'couplet', 'imagechange', 'imagelist'))) {
- showmessage(L('plate_width_not_empty'), HTTP_REFERER);
- } else {
- $data['width'] = intval($data['width']);
- }
- if ((!isset($data['height']) || $data['height']==0) && in_array($data['type'], array('banner', 'fixure', 'float', 'couplet', 'imagechange', 'imagelist'))) {
- showmessage(L('plate_height_not_empty'), HTTP_REFERER);
- } else {
- $data['height'] = intval($data['height']);
- }
- $TYPES = $this->template_type();
- return $data;
- }
- }
- ?>
|