| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 |
- <?php
- if (!defined('IN_MYMPS')) {
- exit('Forbidden');
- }
- $ac = in_array($ac, array('list', 'detail')) ? $ac : 'list';
- if (submit_check('coupon_submit')) {
- if (is_array($selectedids)) {
- $create_in = create_in($selectedids);
- $query = $db->query('SELECT * FROM `' . $db_mymps . 'coupon` ' . $where . ' AND id ' . $create_in);
- while ($row = $db->fetchRow($query)) {
- $delete[$row['id']]['picture'] = $row['picture'];
- $delete[$row['id']]['pre_picture'] = $row['pre_picture'];
- }
- foreach ($delete as $k => $v) {
- @unlink(MYMPS_ROOT . $v['picture']);
- @unlink(MYMPS_ROOT . $v['pre_picture']);
- }
- $db->query('DELETE FROM `' . $db_mymps . 'coupon` ' . $where . ' AND id ' . $create_in);
- unset($delete);
- unset($row);
- unset($query);
- unset($create_in);
- write_msg('', '?m=coupon&type=corp&success=3&status=' . $status . '&page=' . $page);
- }
- include MYMPS_DATA . '/config.inc.php';
- $name_file = 'coupon_image';
- $title = trim($title);
- $content = trim($content);
- $des = textarea_post_change($des);
- $cate_id = intval($cate_id);
- $areaid = intval($areaid);
- $begindate = intval(strtotime($begindate));
- $enddate = intval(strtotime($enddate));
- $status = isset($status) ? intval($status) : '';
- if (empty($title)) {
- write_msg('', '?m=coupon&type=corp&ac=detail&error=37&id=' . $id);
- }
- if (empty($content)) {
- write_msg('', '?m=coupon&type=corp&ac=detail&error=35&id=' . $id);
- }
- if (empty($id) && !$_FILES[$name_file]) {
- write_msg('', '?m=coupon&type=corp&ac=detail&error=36&id=' . $id);
- }
- if ($_FILES[$name_file]['name']) {
- require_once MYMPS_INC . '/upfile.fun.php';
- check_upimage($name_file);
- $destination = '/coupon/' . date('Ym') . '/';
- $mymps_image = empty($id) ? start_upload($name_file, $destination, 0, $mymps_mymps['cfg_coupon_limit']['width'], $mymps_mymps['cfg_coupon_limit']['height']) : start_upload($name_file, $destination, 0, $mymps_mymps['cfg_coupon_limit']['width'], $mymps_mymps['cfg_coupon_limit']['height'], $picture, $pre_picture);
- $picture = $mymps_image[0];
- $pre_picture = $mymps_image[1];
- unset($mymps_image);
- }
- if (empty($id)) {
- $db->query('INSERT INTO `' . $db_mymps . 'coupon` (title,des,content,pre_picture,picture,cate_id,areaid,begindate,enddate,userid,dateline,ctype,sup,status) VALUES (\'' . $title . '\',\'' . $des . '\',\'' . $content . '\',\'' . $pre_picture . '\',\'' . $picture . '\',\'' . $cate_id . '\',\'' . $areaid . '\',\'' . $begindate . '\',\'' . $enddate . '\',\'' . $s_uid . '\',\'' . $timestamp . '\',\'' . $ctype . '\',\'' . $sup . '\',\'' . $status . '\')');
- $score_change = get_credit_score();
- $score_changer = $score_change['score']['rank']['coupon'];
- $db->query('UPDATE `' . $db_mymps . 'member` SET score = score' . $score_changer . (' WHERE userid = \'' . $s_uid . '\''));
- $score_change = $score_changer = NULL;
- $url = '?m=coupon&type=corp&success=8&ac=detail&id=' . $id . '&alert=2';
- }
- else {
- $db->query('UPDATE `' . $db_mymps . 'coupon` SET title = \'' . $title . '\',des = \'' . $des . '\',content = \'' . $content . '\',cate_id = \'' . $cate_id . '\',areaid = \'' . $areaid . '\',picture=\'' . $picture . '\',pre_picture=\'' . $pre_picture . '\',begindate = \'' . $begindate . '\',enddate=\'' . $enddate . '\', dateline = \'' . $timestamp . '\' , ctype = \'' . $ctype . '\' , sup = \'' . $sup . '\' , status = \'' . $status . '\' ' . $where . ' AND id = \'' . $id . '\'');
- }
- write_msg('', $url ? $url : '?m=coupon&type=corp&success=8&ac=detail&id=' . $id);
- }
- else {
- if ($ac == 'list') {
- $status = isset($_GET['status']) ? $_GET['status'] : '';
- if (!in_array($status, array('yes', 'no')) || empty($status)) {
- $status = 'yes';
- }
- $where .= $status == 'yes' ? ' AND status = \'1\'' : ' AND status = \'0\'';
- $rows_num = mymps_count('coupon', $where);
- $param = setParam(array('m', 'type', 'ac', 'status'));
- $coupon = page1('SELECT * FROM `' . $db_mymps . 'coupon` ' . $where . ' ORDER BY dateline DESC');
- }
- else if ($ac == 'detail') {
- require_once MYMPS_ROOT . '/plugin/coupon/include/functions.php';
- require_once MYMPS_INC . '/class.fun.php';
- if ($id) {
- $edit = $db->getRow('SELECT * FROM `' . $db_mymps . 'coupon` WHERE id = \'' . $id . '\'');
- $begindate = date('Y-m-d', $edit['begindate']);
- $enddate = date('Y-m-d', $edit['enddate']);
- $edit['des'] = de_textarea_post_change($edit['des']);
- }
- $acontent = get_editor('content', 'Member', $edit['content'], '90%', '250px');
- }
- $location = location('corp');
- include mymps_tpl('coupon_' . $ac);
- }
- ?>
|