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/
Upload File :
Current Directory [ Writeable ] Root Directory [ Writeable ]


Current File : /www/wwwroot/saimikebio.com/mobile/ecshopjcw/email_list.php
<?php



/**

 * ECSHOP 邮件列表管理

 * ===========================================================

 * * 版权所有 2005-2012 上海商派网络科技有限公司,并保留所有权利。

 * 网站地址: http://www.ecshop.com;

 * ----------------------------------------------------------

 * 这不是一个自由软件!您只能在不用于商业目的的前提下对程序代码进行修改和

 * 使用;不允许对程序代码以任何形式任何目的的再发布。

 * ==========================================================

 * $Author: liubo $

 * $Id: email_list.php 17217 2011-01-19 06:29:08Z liubo $

 */

define('IN_ECTOUCH', true);

require(dirname(__FILE__) . '/includes/init.php');

admin_priv('email_list');



if ($_REQUEST['act'] == 'list')

{

    $emaildb = get_email_list();

    $smarty->assign('full_page',    1);

    $smarty->assign('ur_here', $_LANG['email_list']);

    $smarty->assign('emaildb',      $emaildb['emaildb']);

    $smarty->assign('filter',       $emaildb['filter']);

    $smarty->assign('record_count', $emaildb['record_count']);

    $smarty->assign('page_count',   $emaildb['page_count']);

    assign_query_info();

    $smarty->display('email_list.htm');

}

elseif ($_REQUEST['act'] == 'export')

{

    $sql = "SELECT email FROM " . $ecs->table('email_list') . "WHERE stat = 1";

    $emails = $db->getAll($sql);

    $out = '';

    foreach ($emails as $key => $val)

    {

        $out .= "$val[email]\n";

    }

    $contentType = 'text/plain';

    $len = strlen($out);

    header('Last-Modified: ' . gmdate('D, d M Y H:i:s',time()+31536000) .' GMT');

    header('Pragma: no-cache');

    header('Content-Encoding: none');

    header('Content-type: ' . $contentType);

    header('Content-Length: ' . $len);

    header('Content-Disposition: attachment; filename="email_list.txt"');

    echo $out;

    exit;

}

elseif ($_REQUEST['act'] == 'query')

{

    $emaildb = get_email_list();

    $smarty->assign('emaildb',      $emaildb['emaildb']);

    $smarty->assign('filter',       $emaildb['filter']);

    $smarty->assign('record_count', $emaildb['record_count']);

    $smarty->assign('page_count',   $emaildb['page_count']);



    $sort_flag  = sort_flag($emaildb['filter']);

    $smarty->assign($sort_flag['tag'], $sort_flag['img']);



    make_json_result($smarty->fetch('email_list.htm'), '',

        array('filter' => $emaildb['filter'], 'page_count' => $emaildb['page_count']));

}



/*------------------------------------------------------ */

//-- 批量删除

/*------------------------------------------------------ */

elseif ($_REQUEST['act'] == 'batch_remove')

{

    if (!isset($_POST['checkboxes']) || !is_array($_POST['checkboxes']))

    {

        sys_msg($_LANG['no_select_email'], 1);

    }



    $sql = "DELETE FROM " . $ecs->table('email_list') .

            " WHERE id " . db_create_in(join(',', $_POST['checkboxes']));

    $db->query($sql);



    $lnk[] = array('text' => $_LANG['back_list'], 'href' => 'email_list.php?act=list');

    sys_msg(sprintf($_LANG['batch_remove_succeed'], $db->affected_rows()), 0, $lnk);

}



/*------------------------------------------------------ */

//-- 批量恢复

/*------------------------------------------------------ */

elseif ($_REQUEST['act'] == 'batch_unremove')

{

    if (!isset($_POST['checkboxes']) || !is_array($_POST['checkboxes']))

    {

        sys_msg($_LANG['no_select_email'], 1);

    }



    $sql = "UPDATE " . $ecs->table('email_list') .

            " SET stat = 1 WHERE stat <> 1 AND id " . db_create_in(join(',', $_POST['checkboxes']));

    $db->query($sql);



    $lnk[] = array('text' => $_LANG['back_list'], 'href' => 'email_list.php?act=list');

    sys_msg(sprintf($_LANG['batch_unremove_succeed'], $db->affected_rows()), 0, $lnk);

}



/*------------------------------------------------------ */

//-- 批量退订

/*------------------------------------------------------ */

elseif ($_REQUEST['act'] == 'batch_exit')

{

    if (!isset($_POST['checkboxes']) || !is_array($_POST['checkboxes']))

    {

        sys_msg($_LANG['no_select_email'], 1);

    }



    $sql = "UPDATE " . $ecs->table('email_list') .

            " SET stat = 2 WHERE stat <> 2 AND id " . db_create_in(join(',', $_POST['checkboxes']));

    $db->query($sql);



    $lnk[] = array('text' => $_LANG['back_list'], 'href' => 'email_list.php?act=list');

    sys_msg(sprintf($_LANG['batch_exit_succeed'], $db->affected_rows()), 0, $lnk);

}



function get_email_list()

{

    $result = get_filter();

    if ($result === false)

    {

        $filter['sort_by']      = empty($_REQUEST['sort_by']) ? 'stat' : trim($_REQUEST['sort_by']);

        $filter['sort_order']   = empty($_REQUEST['sort_order']) ? 'ASC' : trim($_REQUEST['sort_order']);



        $sql = "SELECT COUNT(*) FROM " . $GLOBALS['ecs']->table('email_list');

        $filter['record_count'] = $GLOBALS['db']->getOne($sql);



        /* 分页大小 */

        $filter = page_and_size($filter);



        /* 查询 */



        $sql = "SELECT * FROM " . $GLOBALS['ecs']->table('email_list') .

            " 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'];

    }



    $emaildb = $GLOBALS['db']->getAll($sql);



    $arr = array('emaildb' => $emaildb, 'filter' => $filter, 'page_count' => $filter['page_count'], 'record_count' => $filter['record_count']);



    return $arr;





}

?>