Beispiel #1
0
// The program developed by loyjers core architecture, individual all rights reserved, if you have any questions please contact loyjers@126.com
// ******************************************************************************************************************************
//加载共用代码
require_once dirname(__FILE__) . "/inc_common.php";
$_GET = helper::sqlxss($_GET);
$_POST = helper::sqlxss($_POST);
//判断操作权限
check_level("E03");
// ******************************************************************************************************************************
// 页面动作函数载入
// ******************************************************************************************************************************
call_mfunc();
// ******************************************************************************************************************************
// 模板载入
// ******************************************************************************************************************************
$tpl = assign_tpl_admin(basename(__FILE__));
$template = $tpl[0];
require_once $tpl[1];
//
// ******************************************************************************************************************************
// 页面动作函数方法,必须以 m__ 开头
// ******************************************************************************************************************************
/*
 * 获取内链词列表,支持分页
 * 初始化页面时调用数据并且显示
 */
function m__list()
{
    global $dbm, $rs;
    $params['where'] = " 1=1";
    if (isset($_GET['search_type']) && isset($_GET['search_txt']) && !empty($_GET['search_txt']) && !empty($_GET['search_type'])) {
Beispiel #2
0
// ******************************************************************************************************************************
// MCMS Copyright (c) 2012-2013 ZhangYiYeTai Inc.
// The program developed by loyjers core architecture, individual all rights reserved, if you have any questions please contact loyjers@126.com
// ******************************************************************************************************************************
require_once dirname(__FILE__) . "/../../inc_common.php";
//加载共用代码
//判断操作权限
check_level("E01");
// ******************************************************************************************************************************
// 页面动作函数载入
// ******************************************************************************************************************************
call_mfunc();
// ******************************************************************************************************************************
// 模板载入
// ******************************************************************************************************************************
$tpl = assign_tpl_admin(basename(__FILE__), 'plugins/gov.user');
$template = $tpl[0];
require_once $tpl[1];
//
// ******************************************************************************************************************************
// 页面动作函数方法,必须以 m__ 开头
// ******************************************************************************************************************************
/**
 * 获取所有会员列表
 */
//echo show_button(array('class'=>'but2 but2r','onclick'=>"nlink_show(0);",'text'=>'添加会员','level'=>'E0301'));
function m__list()
{
    global $dbm, $user;
    $params = array();
    $p = isset($_GET['p']) ? $_GET['p'] : 1;