Source for file LC_Page_Admin_Basis_Holiday.php

Documentation is available at LC_Page_Admin_Basis_Holiday.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_Basis_Holiday.php 16741 2007-11-08 00:43:24Z adachi $
  33.  */
  34.  
  35.     // }}}
  36.     // {{{ functions
  37.  
  38.     /**
  39.      * Page を初期化する.
  40.      *
  41.      * @return void 
  42.      */
  43.     function init({
  44.         parent::init();
  45.         $this->tpl_mainpage = 'basis/holiday.tpl';
  46.         $this->tpl_subnavi 'basis/subnavi.tpl';
  47.         $this->tpl_subno 'holiday';
  48.         $this->tpl_subtitle '定休日管理';
  49.         $this->tpl_mainno = 'basis';
  50.     }
  51.  
  52.     /**
  53.      * Page のプロセス.
  54.      *
  55.      * @return void 
  56.      */
  57.     function process({
  58.         $conn new SC_DBConn();
  59.         $objView new SC_AdminView();
  60.         $objSess new SC_Session();
  61.         $objQuery new SC_Query();
  62.         $objDb new SC_Helper_DB_Ex();
  63.  
  64.         $objDate new SC_Date();
  65.         $this->arrMonth $objDate->getMonth();
  66.         $this->arrDay $objDate->getDay();
  67.  
  68.         // 認証可否の判定
  69.         SC_Utils_Ex::sfIsSuccess($objSess);
  70.  
  71.         if (!isset($_POST['mode'])) $_POST['mode'"";
  72.  
  73.         // 要求判定
  74.         switch($_POST['mode']{
  75.         // 編集処理
  76.         case 'edit':
  77.             // POST値の引き継ぎ
  78.             $this->arrForm $_POST;
  79.             // 入力文字の変換
  80.             $this->arrForm $this->lfConvertParam($this->arrForm);
  81.  
  82.             // エラーチェック
  83.             $this->arrErr $this->lfErrorCheck();
  84.             if(count($this->arrErr<= 0{
  85.                 if($_POST['holiday_id'== ""{
  86.                     $this->lfInsertClass($this->arrForm);    // 新規作成
  87.                 else {
  88.                     $this->lfUpdateClass($this->arrForm);    // 既存編集
  89.                 }
  90.                 // 再表示
  91.                 $this->reload();
  92.             else {
  93.                 // POSTデータを引き継ぐ
  94.                 $this->tpl_holiday_id $_POST['holiday_id'];
  95.             }
  96.             break;
  97.         // 削除
  98.         case 'delete':
  99.             $objDb->sfDeleteRankRecord("dtb_holiday""holiday_id"$_POST['holiday_id']""true);
  100.             // 再表示
  101.             $this->reload();
  102.             break;
  103.         // 編集前処理
  104.         case 'pre_edit':
  105.             // 編集項目をDBより取得する。
  106.             $where "holiday_id = ?";
  107.             $arrRet $objQuery->select("title, month, day""dtb_holiday"$wherearray($_POST['holiday_id']));
  108.             // 入力項目にカテゴリ名を入力する。
  109.             $this->arrForm['title'$arrRet[0]['title'];
  110.             $this->arrForm['month'$arrRet[0]['month'];
  111.             $this->arrForm['day'$arrRet[0]['day'];
  112.             // POSTデータを引き継ぐ
  113.             $this->tpl_holiday_id $_POST['holiday_id'];
  114.         break;
  115.         case 'down':
  116.             $objDb->sfRankDown("dtb_holiday""holiday_id"$_POST['holiday_id']);
  117.             // 再表示
  118.             $this->reload();
  119.             break;
  120.         case 'up':
  121.             $objDb->sfRankUp("dtb_holiday""holiday_id"$_POST['holiday_id']);
  122.             // 再表示
  123.             $this->reload();
  124.             break;
  125.         default:
  126.             break;
  127.         }
  128.  
  129.         // 規格の読込
  130.         $where "del_flg <> 1";
  131.         $objQuery->setorder("rank DESC");
  132.         $this->arrHoliday $objQuery->select("holiday_id, title, month, day""dtb_holiday"$where);
  133.  
  134.         $objView->assignobj($this);
  135.         $objView->display(MAIN_FRAME);
  136.     }
  137.  
  138.     /**
  139.      * デストラクタ.
  140.      *
  141.      * @return void 
  142.      */
  143.     function destroy({
  144.         parent::destroy();
  145.     }
  146.  
  147.     /* DBへの挿入 */
  148.     function lfInsertClass($arrData{
  149.         $objQuery new SC_Query();
  150.         // INSERTする値を作成する。
  151.         $sqlval['title'$arrData['title'];
  152.         $sqlval['month'$arrData['month'];
  153.         $sqlval['day'$arrData['day'];
  154.         $sqlval['creator_id'$_SESSION['member_id'];
  155.         $sqlval['rank'$objQuery->max("dtb_holiday""rank"1;
  156.         $sqlval['update_date'"Now()";
  157.         $sqlval['create_date'"Now()";
  158.         // INSERTの実行
  159.         $ret $objQuery->insert("dtb_holiday"$sqlval);
  160.         return $ret;
  161.     }
  162.  
  163.     /* DBへの更新 */
  164.     function lfUpdateClass($arrData{
  165.         $objQuery new SC_Query();
  166.         // UPDATEする値を作成する。
  167.         $sqlval['title'$arrData['title'];
  168.         $sqlval['month'$arrData['month'];
  169.         $sqlval['day'$arrData['day'];
  170.         $sqlval['update_date'"Now()";
  171.         $where "holiday_id = ?";
  172.         // UPDATEの実行
  173.         $ret $objQuery->update("dtb_holiday"$sqlval$wherearray($_POST['holiday_id']));
  174.         return $ret;
  175.     }
  176.  
  177.     /* 取得文字列の変換 */
  178.     function lfConvertParam($array{
  179.         // 文字変換
  180.         $arrConvList['title'"KVa";
  181.         $arrConvList['month'"n";
  182.         $arrConvList['day'"n";
  183.  
  184.         foreach ($arrConvList as $key => $val{
  185.             // POSTされてきた値のみ変換する。
  186.             if(isset($array[$key])) {
  187.                 $array[$keymb_convert_kana($array[$key,$val);
  188.             }
  189.         }
  190.         return $array;
  191.     }
  192.  
  193.     /* 入力エラーチェック */
  194.     function lfErrorCheck({
  195.         $objErr new SC_CheckError();
  196.         $objErr->doFunc(array("タイトル""title"SMTEXT_LEN)array("EXIST_CHECK","SPTAB_CHECK","MAX_LENGTH_CHECK"));
  197.         $objErr->doFunc(array("月""month"INT_LEN)array("SELECT_CHECK","SPTAB_CHECK","MAX_LENGTH_CHECK"));
  198.         $objErr->doFunc(array("日""day"INT_LEN)array("SELECT_CHECK","SPTAB_CHECK","MAX_LENGTH_CHECK"));
  199.         if(!isset($objErr->arrErr['date'])) {
  200.             $objQuery new SC_Query();
  201.             $where "del_flg = 0 AND month = ? AND day = ?";
  202.             $arrval array($_POST['month']$_POST['day']);
  203.             if (!empty($_POST['holiday_id'])) {
  204.                 $where .= " AND holiday_id <> ?";
  205.                 $arrval[$_POST['holiday_id'];
  206.             }
  207.             $arrRet $objQuery->select("count(holiday_id)""dtb_holiday"$where$arrval);
  208.             // 編集中のレコード以外に同じ日付が存在する場合
  209.             if ($arrRet[0]['count'0{
  210.                 $objErr->arrErr['date'"※ 既に同じ日付の登録が存在します。<br>";
  211.             }
  212.         }
  213.         return $objErr->arrErr;
  214.     }
  215. }
  216. ?>

Documentation generated on Tue, 28 Apr 2009 18:10:43 +0900 by phpDocumentor 1.4.2