Server : Apache System : Linux iZ2vcgyutqttsd1p850kl8Z 3.10.0-1160.92.1.el7.x86_64 #1 SMP Tue Jun 20 11:48:01 UTC 2023 x86_64 User : www ( 1000) PHP Version : 5.6.40 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv Directory : /www/wwwroot/saimikebio.com/mobile/ecshopjcw/ |
<?php define('IN_ECTOUCH', true); require ('includes/init.php'); include_once (ROOT_PATH . 'include/cls_image.php'); $image = new cls_image($_CFG['bgcolor']); $exc = new exchange($ecs->table("touch_nav") , $db, 'id', 'name'); if ($_REQUEST['act'] == 'list') { $smarty->assign('ur_here', $_LANG['navigator']); $smarty->assign('action_link', array( 'text' => $_LANG['add_new'], 'href' => 'navigator.php?act=add' )); $smarty->assign('full_page', 1); $navdb = get_nav(); $smarty->assign('navdb', $navdb['navdb']); $smarty->assign('filter', $navdb['filter']); $smarty->assign('record_count', $navdb['record_count']); $smarty->assign('page_count', $navdb['page_count']); assign_query_info(); $smarty->display('navigator.htm'); } elseif ($_REQUEST['act'] == 'query') { $navdb = get_nav(); $smarty->assign('navdb', $navdb['navdb']); $smarty->assign('filter', $navdb['filter']); $smarty->assign('record_count', $navdb['record_count']); $smarty->assign('page_count', $navdb['page_count']); $sort_flag = sort_flag($navdb['filter']); $smarty->assign($sort_flag['tag'], $sort_flag['img']); make_json_result($smarty->fetch('navigator.htm') , '', array( 'filter' => $navdb['filter'], 'page_count' => $navdb['page_count'] )); } elseif ($_REQUEST['act'] == 'add') { if (empty($_REQUEST['step'])) { $rt = array( 'act' => 'add' ); $sysmain = get_sysnav(); $smarty->assign('action_link', array( 'text' => $_LANG['go_list'], 'href' => 'navigator.php?act=list' )); $smarty->assign('ur_here', $_LANG['navigator']); assign_query_info(); $smarty->assign('sysmain', $sysmain); $smarty->assign('rt', $rt); $smarty->display('navigator_add.htm'); } elseif ($_REQUEST['step'] == 2) { $item_name = $_REQUEST['item_name']; $item_url = $_REQUEST['item_url']; $item_ifshow = $_REQUEST['item_ifshow']; $item_opennew = $_REQUEST['item_opennew']; $item_type = $_REQUEST['item_type']; $vieworder = $db->getOne("SELECT max(vieworder) FROM " . $ecs->table('touch_nav') . " WHERE type = '" . $item_type . "'"); $item_vieworder = empty($_REQUEST['item_vieworder']) ? $vieworder + 1 : $_REQUEST['item_vieworder']; $img_name = basename($image->upload_image($_FILES['item_pic'], 'item_pic')); $item_pic = empty($img_name) ? '' : $img_name; if ($item_ifshow == 1 && $item_type == 'middle') { $arr = analyse_uri($item_url); if ($arr) { set_show_in_nav($arr['type'], $arr['id'], 1); $sql = "INSERT INTO " . $GLOBALS['ecs']->table('touch_nav') . " (name,ctype,cid,ifshow,vieworder,opennew,url,type,pic) VALUES('$item_name','" . $arr['type'] . "','" . $arr['id'] . "','$item_ifshow','$item_vieworder','$item_opennew','$item_url','$item_type','$item_pic')"; } } if (empty($sql)) { $sql = "INSERT INTO " . $GLOBALS['ecs']->table('touch_nav') . " (name,ifshow,vieworder,opennew,url,type,pic) VALUES('$item_name','$item_ifshow','$item_vieworder','$item_opennew','$item_url','$item_type','$item_pic')"; } $db->query($sql); clear_cache_files(); $links[] = array( 'text' => $_LANG['navigator'], 'href' => 'navigator.php?act=list' ); $links[] = array( 'text' => $_LANG['add_new'], 'href' => 'navigator.php?act=add' ); sys_msg($_LANG['edit_ok'], 0, $links); } } elseif ($_REQUEST['act'] == 'edit') { $id = $_REQUEST['id']; if (empty($_REQUEST['step'])) { $rt = array( 'act' => 'edit', 'id' => $id ); $row = $db->getRow("SELECT * FROM " . $GLOBALS['ecs']->table('touch_nav') . " WHERE id='$id'"); $rt['item_name'] = $row['name']; $rt['item_url'] = $row['url']; $rt['item_pic'] = $row['pic']; $rt['item_vieworder'] = $row['vieworder']; $rt['item_ifshow_' . $row['ifshow']] = 'selected'; $rt['item_opennew_' . $row['opennew']] = 'selected'; $rt['item_type_' . $row['type']] = 'selected'; $sysmain = get_sysnav(); $smarty->assign('action_link', array( 'text' => $_LANG['go_list'], 'href' => 'navigator.php?act=list' )); $smarty->assign('ur_here', $_LANG['navigator']); assign_query_info(); $smarty->assign('sysmain', $sysmain); $smarty->assign('rt', $rt); $smarty->display('navigator_add.htm'); } elseif ($_REQUEST['step'] == 2) { $item_name = $_REQUEST['item_name']; $item_url = $_REQUEST['item_url']; $item_ifshow = $_REQUEST['item_ifshow']; $item_opennew = $_REQUEST['item_opennew']; $item_type = $_REQUEST['item_type']; $item_vieworder = (int)$_REQUEST['item_vieworder']; /* 删除图标 */ $row2 = $db->getRow("SELECT * FROM " . $GLOBALS['ecs']->table('touch_nav') . " WHERE id='$id'"); if (!empty($_FILES['item_pic']['tmp_name'])) { @unlink('../data/item_pic/' .$row2['pic']); } $img_name = basename($image->upload_image($_FILES['item_pic'], 'item_pic')); if ($img_name){ $item_pic = $img_name; }else{ $item_pic = $row2['pic']; } $row = $db->getRow("SELECT ctype,cid,ifshow,type FROM " . $GLOBALS['ecs']->table('touch_nav') . " WHERE id = '$id'"); $arr = analyse_uri($item_url); if ($arr) { if ($row['ctype'] == $arr['type'] && $row['cid'] == $arr['id']) { if ($item_type != 'middle') { set_show_in_nav($arr['type'], $arr['id'], 0); } } else { if ($row['ifshow'] == 1 && $row['type'] == 'middle') { set_show_in_nav($row['ctype'], $row['cid'], 0); } elseif ($row['ifshow'] == 0 && $row['type'] == 'middle') { } } if ($item_ifshow != is_show_in_nav($arr['type'], $arr['id']) && $item_type == 'middle') { set_show_in_nav($arr['type'], $arr['id'], $item_ifshow); } $sql = "UPDATE " . $GLOBALS['ecs']->table('touch_nav') . " SET name='$item_name',ctype='" . $arr['type'] . "',cid='" . $arr['id'] . "',ifshow='$item_ifshow',vieworder='$item_vieworder',opennew='$item_opennew',url='$item_url',pic='$item_pic',type='$item_type' WHERE id='$id'"; } else { if ($row['ctype'] && $row['cid']) { set_show_in_nav($row['ctype'], $row['cid'], 0); } $sql = "UPDATE " . $GLOBALS['ecs']->table('touch_nav') . " SET name='$item_name',ctype='',cid='',ifshow='$item_ifshow',vieworder='$item_vieworder',opennew='$item_opennew',url='$item_url',pic='$item_pic',type='$item_type' WHERE id='$id'"; } $db->query($sql); clear_cache_files(); $links[] = array( 'text' => $_LANG['navigator'], 'href' => 'navigator.php?act=list' ); sys_msg($_LANG['edit_ok'], 0, $links); } } elseif ($_REQUEST['act'] == 'del') { $id = (int)$_GET['id']; $row = $db->getRow("SELECT ctype,cid,type,pic FROM " . $GLOBALS['ecs']->table('touch_nav') . " WHERE id = '$id' LIMIT 1"); if ($row['type'] == 'middle' && $row['ctype'] && $row['cid']) { set_show_in_nav($row['ctype'], $row['cid'], 0); } /* 删除图标 */ if (!empty($row['pic'])) { @unlink('../data/item_pic/' .$row['pic']); } $sql = " DELETE FROM " . $GLOBALS['ecs']->table('touch_nav') . " WHERE id='$id' LIMIT 1"; $db->query($sql); clear_cache_files(); ecs_header("Location: navigator.php?act=list\n"); exit; } elseif ($_REQUEST['act'] == 'edit_sort_order') { check_authz_json('nav'); $id = intval($_POST['id']); $order = json_str_iconv(trim($_POST['val'])); if (!preg_match("/^[0-9]+$/", $order)) { make_json_error(sprintf($_LANG['enter_int'], $order)); } else { if ($exc->edit("vieworder = '$order'", $id)) { clear_cache_files(); make_json_result(stripslashes($order)); } else { make_json_error($db->error()); } } } if ($_REQUEST['act'] == 'toggle_ifshow') { $id = intval($_POST['id']); $val = intval($_POST['val']); $row = $db->getRow("SELECT type,ctype,cid FROM " . $GLOBALS['ecs']->table('touch_nav') . " WHERE id = '$id' LIMIT 1"); if ($row['type'] == 'middle' && $row['ctype'] && $row['cid']) { set_show_in_nav($row['ctype'], $row['cid'], $val); } if (nav_update($id, array( 'ifshow' => $val )) != false) { clear_cache_files(); make_json_result($val); } else { make_json_error($db->error()); } } if ($_REQUEST['act'] == 'toggle_opennew') { $id = intval($_POST['id']); $val = intval($_POST['val']); if (nav_update($id, array( 'opennew' => $val )) != false) { clear_cache_files(); make_json_result($val); } else { make_json_error($db->error()); } } function get_nav() { global $_CFG; $result = get_filter(); if ($result === false) { $filter['sort_by'] = empty($_REQUEST['sort_by']) ? 'type DESC, vieworder' : 'type DESC, ' . trim($_REQUEST['sort_by']); $filter['sort_order'] = empty($_REQUEST['sort_order']) ? 'ASC' : trim($_REQUEST['sort_order']); $sql = "SELECT count(*) FROM " . $GLOBALS['ecs']->table('touch_nav'); $filter['record_count'] = $GLOBALS['db']->getOne($sql); $filter = page_and_size($filter); $sql = "SELECT id, name, ifshow, vieworder, opennew, url, pic, type" . " FROM " . $GLOBALS['ecs']->table('touch_nav') . " ORDER by " . $filter['sort_by'] . ' ' . $filter['sort_order'] . " LIMIT " . $filter['start'] . ',' . $filter['page_size']; set_filter($filter, $sql); } else { $sql = $result['sql']; $filter = $result['filter']; } $navdb = $GLOBALS['db']->getAll($sql); $type = ""; $navdb2 = array(); foreach ($navdb as $k => $v) { if (!empty($type) && $type != $v['type']) { $navdb2[] = array(); } $navdb2[$k] = $v; $navdb2[$k]['pic'] = '../data/item_pic/' . (empty($v['pic']) ? 'ico.png' : $v['pic']); $type = $v['type']; } $arr = array( 'navdb' => $navdb2, 'filter' => $filter, 'page_count' => $filter['page_count'], 'record_count' => $filter['record_count'] ); return $arr; } function sort_nav($a, $b) { return $a['vieworder'] > $b['vieworder'] ? 1 : -1; } function get_sysnav() { global $_LANG; $sysmain = array( array($_LANG['view_cart'],'flow.php'), array($_LANG['pick_out'],'pick_out.php'), array($_LANG['group_buy_goods'],'group_buy.php'), array($_LANG['snatch'],'snatch.php'), array($_LANG['tag_cloud'],'tag_cloud.php'), array($_LANG['user_center'],'user.php'), array($_LANG['wholesale'], 'wholesale.php'), array($_LANG['activity'], 'activity.php'), array($_LANG['myship'], 'myship.php'), array($_LANG['message_board'], 'message.php'), array($_LANG['quotation'], 'quotation.php'), ); $sysmain[] = array('-','-'); $catlist = array_merge(cat_list(0, 0, false), array('-'), article_cat_list(0, 0, false)); foreach($catlist as $key => $val) { if (is_array($val)) { $val['view_name'] = $val['cat_name']; for($i=0;$i<$val['level'];$i++) { $val['view_name'] = ' ' . $val['view_name']; } $val['url'] = str_replace( '&', '&', $val['url']); $val['url'] = str_replace( '&', '&', $val['url']); } @$sysmain[] = array($val['cat_name'], $val['url'], $val['view_name']); } return $sysmain; } function nav_update($id, $args) { if (empty($args) || empty($id)) { return false; } return $GLOBALS['db']->autoExecute($GLOBALS['ecs']->table('touch_nav') , $args, 'update', "id='$id'"); } function analyse_uri($uri) { $uri = strtolower(str_replace('&', '&', $uri)); $arr = explode('-', $uri); switch ($arr[0]) { case 'category': return array( 'type' => 'c', 'id' => $arr[1] ); break; case 'article_cat': return array( 'type' => 'a', 'id' => $arr[1] ); break; default: break; } list($fn, $pm) = explode('?', $uri); if (strpos($uri, '&') === FALSE) { $arr = array( $pm ); } else { $arr = explode('&', $pm); } switch ($fn) { case 'category.php': foreach ($arr as $k => $v) { list($key, $val) = explode('=', $v); if ($key == 'id') { return array( 'type' => 'c', 'id' => $val ); } } break; case 'article_cat.php': foreach ($arr as $k => $v) { list($key, $val) = explode('=', $v); if ($key == 'id') { return array( 'type' => 'a', 'id' => $val ); } } break; default: return false; break; } } function is_show_in_nav($type, $id) { if ($type == 'c') { $tablename = $GLOBALS['ecs']->table('category'); } else { $tablename = $GLOBALS['ecs']->table('article_cat'); } return $GLOBALS['db']->getOne("SELECT show_in_nav FROM $tablename WHERE cat_id = '$id'"); } function set_show_in_nav($type, $id, $val) { if ($type == 'c') { $tablename = $GLOBALS['ecs']->table('category'); } else { $tablename = $GLOBALS['ecs']->table('article_cat'); } $GLOBALS['db']->query("UPDATE $tablename SET show_in_nav = '$val' WHERE cat_id = '$id'"); clear_cache_files(); } ?>