source: branches/version-2_5-dev/data/class/pages/admin/system/LC_Page_Admin_System.php @ 19661

Revision 19661, 4.2 KB checked in by nanasess, 13 years ago (diff)

source:branches/camp/camp-2_5-E のマージ

  • スマートフォン対応(#787)
  • プラグイン機能(#494)
  • Property svn:eol-style set to LF
  • Property svn:keywords set to Id
  • Property svn:mime-type set to text/x-httpd-php; charset=UTF-8
Line 
1<?php
2/*
3 * This file is part of EC-CUBE
4 *
5 * Copyright(c) 2000-2010 LOCKON CO.,LTD. All Rights Reserved.
6 *
7 * http://www.lockon.co.jp/
8 *
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License
11 * as published by the Free Software Foundation; either version 2
12 * of the License, or (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
22 */
23
24// {{{ requires
25require_once(CLASS_PATH . "pages/admin/LC_Page_Admin.php");
26
27/**
28 * システム管理 のページクラス.
29 *
30 * @package Page
31 * @author LOCKON CO.,LTD.
32 * @version $Id$
33 */
34class LC_Page_Admin_System extends LC_Page_Admin {
35
36    // }}}
37    // {{{ functions
38
39    /**
40     * Page を初期化する.
41     *
42     * @return void
43     */
44    function init() {
45        parent::init();
46
47        $this->list_data    = '';  // テーブルデータ取得用
48        $this->tpl_disppage = '';  // 表示中のページ番号
49        $this->tpl_strnavi  = '';
50        $this->tpl_mainpage = 'system/index.tpl';
51        $this->tpl_subnavi  = 'system/subnavi.tpl';
52        $this->tpl_mainno   = 'system';
53        $this->tpl_subno    = 'index';
54        $this->tpl_onload   = 'fnGetRadioChecked();';
55        $this->tpl_subtitle = 'メンバー管理';
56
57        $masterData = new SC_DB_MasterData_Ex();
58        $this->arrAUTHORITY = $masterData->getMasterData('mtb_authority');
59    }
60
61    /**
62     * Page のプロセス.
63     *
64     * @return void
65     */
66    function process() {
67        $this->action();
68        $this->sendResponse();
69    }
70
71    /**
72     * Page のアクション.
73     *
74     * @return void
75     */
76    function action() {
77        $objSess  = new SC_Session();
78
79        // 認証可否の判定
80        SC_Utils_Ex::sfIsSuccess($objSess);
81
82        // ADMIN_ID以外の管理者件数を取得
83        $linemax = $this->getMemberCount("del_flg <> 1 AND member_id <> " . ADMIN_ID);
84
85        // ADMIN_ID以外で稼動中の管理者件数を取得
86        $this->workmax
87            = $this->getMemberCount("work = 1 AND del_flg <> 1 AND member_id <> " . ADMIN_ID);
88
89        // ページ送りの処理
90        $pageno = isset($_GET['pageno']) ? $_GET['pageno'] : 1;
91        $objNavi = new SC_PageNavi($pageno, $linemax, MEMBER_PMAX, "fnMemberPage", NAVI_PMAX);
92        $this->tpl_strnavi  = $objNavi->strnavi;
93        $this->tpl_disppage = $objNavi->now_page;
94        $this->tpl_pagemax  = $objNavi->max_page;
95
96        // 取得範囲を指定(開始行番号、行数のセット)して管理者データを取得
97        $this->list_data = $this->getMemberData($objNavi->start_row);
98    }
99
100    /**
101     * デストラクタ.
102     *
103     * @return void
104     */
105    function destroy() {
106        parent::destroy();
107    }
108
109    /**
110     * dtb_memberからWHERE句に該当する件数を取得する.
111     *
112     * @access private
113     * @param string $where WHERE句
114     * @return integer 件数
115     */
116     function getMemberCount($where) {
117        $objQuery = new SC_Query();
118        $table = 'dtb_member';
119        return $objQuery->count($table, $where);
120     }
121
122    /**
123     * 開始行番号, 行数を指定して管理者データを取得する.
124     *
125     * @access private
126     * @param integer $startno 開始行番号
127     * @return array 管理者データの連想配列
128     */
129    function getMemberData($startno) {
130        $objSql = new SC_SelectSql();
131        $objSql->setSelect("SELECT member_id,name,department,login_id,authority,rank,work FROM dtb_member");
132        $objSql->setOrder("rank DESC");
133        $objSql->setWhere("del_flg <> 1 AND member_id <> ". ADMIN_ID);
134        $objSql->setLimitOffset(MEMBER_PMAX, $startno);
135
136        $objQuery = new SC_Query();
137        $arrMemberData = $objQuery->getAll($objSql->getSql());
138
139        return $arrMemberData;
140     }
141}
142?>
Note: See TracBrowser for help on using the repository browser.