Source for file LC_Page_Admin_System_Rank.php

Documentation is available at LC_Page_Admin_System_Rank.php

  1. <?php
  2. /*
  3.  * This file is part of EC-CUBE
  4.  *
  5.  * Copyright(c) 2000-2007 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
  25. require_once(CLASS_PATH "pages/LC_Page.php");
  26.  
  27. /**
  28.  * システム管理 のページクラス.
  29.  *
  30.  * @package Page
  31.  * @author LOCKON CO.,LTD.
  32.  * @version $Id: LC_Page_Admin_System_Rank.php 16582 2007-11-28 15:02:29Z satou $
  33.  */
  34.     // }}}
  35.     // {{{ functions
  36.  
  37.     /**
  38.      * Page を初期化する.
  39.      *
  40.      * @return void 
  41.      */
  42.     function init({
  43.         parent::init();
  44.     }
  45.  
  46.     /**
  47.      * Page のプロセス.
  48.      *
  49.      * @return void 
  50.      */
  51.     function process({
  52.         $conn new SC_DbConn();
  53.  
  54.         // ログインチェック
  55.         SC_Utils::sfIsSuccess(new SC_Session());
  56.  
  57.         // ランキングの変更
  58.         if($_GET['move'== 'up'{
  59.             // 正当な数値であった場合
  60.             if(SC_Utils::sfIsInt($_GET['id'])){
  61.                 $this->lfRunkUp($conn$_GET['id']);
  62.             // エラー処理
  63.             else {
  64.                 GC_Utils::gfPrintLog("error id=".$_GET['id']);
  65.             }
  66.         else if($_GET['move'== 'down'{
  67.             if(SC_Utils::sfIsInt($_GET['id'])){
  68.                 $this->lfRunkDown($conn$_GET['id']);
  69.             // エラー処理
  70.             else {
  71.                 GC_Utils::gfPrintLog("error id=".$_GET['id']);
  72.             }
  73.         }
  74.         
  75.         // ページの表示
  76.         $this->sendRedirect($this->getLocation(URL_SYSTEM_TOP));
  77.     }
  78.  
  79.     /**
  80.      * デストラクタ.
  81.      *
  82.      * @return void 
  83.      */
  84.     function destroy({
  85.         parent::destroy();
  86.     }
  87.  
  88.     // ランキングを上げる。
  89.     function lfRunkUp($conn$id{
  90.         // 自身のランクを取得する。
  91.         $rank $conn->getOne("SELECT rank FROM dtb_member WHERE member_id = ".$id);
  92.         // ランクの最大値を取得する。
  93.         $maxno $conn->getOne("SELECT max(rank) FROM dtb_member");
  94.         // ランクが最大値よりも小さい場合に実行する。
  95.         if($rank $maxno{
  96.             // ランクがひとつ上のIDを取得する。
  97.             $sqlse "SELECT member_id FROM dtb_member WHERE rank = ?";
  98.             $up_id $conn->getOne($sqlse$rank 1);
  99.             // ランク入れ替えの実行
  100.             $conn->query("BEGIN");
  101.             $sqlup "UPDATE dtb_member SET rank = ? WHERE member_id = ?";
  102.             $conn->query($sqluparray($rank 1$id));
  103.             $conn->query($sqluparray($rank$up_id));
  104.             $conn->query("COMMIT");
  105.         }
  106.     }
  107.  
  108.     // ランキングを下げる。
  109.     function lfRunkDown($conn$id{
  110.         // 自身のランクを取得する。
  111.         $rank $conn->getOne("SELECT rank FROM dtb_member WHERE member_id = ".$id);
  112.         // ランクの最小値を取得する。
  113.         $minno $conn->getOne("SELECT min(rank) FROM dtb_member");
  114.         // ランクが最大値よりも大きい場合に実行する。
  115.         if($rank $minno{
  116.             // ランクがひとつ下のIDを取得する。
  117.             $sqlse "SELECT member_id FROM dtb_member WHERE rank = ?";
  118.             $down_id $conn->getOne($sqlse$rank 1);
  119.             // ランク入れ替えの実行
  120.             $conn->query("BEGIN");
  121.             $sqlup "UPDATE dtb_member SET rank = ? WHERE member_id = ?";
  122.             $conn->query($sqluparray($rank 1$id));
  123.             $conn->query($sqluparray($rank$down_id));
  124.             $conn->query("COMMIT");
  125.         }
  126.     }
  127. }
  128. ?>

Documentation generated on Tue, 28 Apr 2009 18:11:53 +0900 by phpDocumentor 1.4.2