Source for file LC_Page_Admin_OwnersStore_Log.php

Documentation is available at LC_Page_Admin_OwnersStore_Log.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_OwnersStore_Log.php 17423 2008-07-11 16:48:04Z Seasoft $
  33.  */
  34.  
  35.     // }}}
  36.     // {{{ functions
  37.  
  38.     /**
  39.      * Page を初期化する.
  40.      *
  41.      * @return void 
  42.      */
  43.     function init({
  44.         parent::init();
  45.  
  46.         $this->tpl_mainpage = 'ownersstore/log.tpl';
  47.         $this->tpl_mainno   = 'ownersstore';
  48.         $this->tpl_subno    'log';
  49.         $this->tpl_subtitle 'ログ管理';
  50.     }
  51.  
  52.     /**
  53.      * Page のプロセス.
  54.      *
  55.      * @return void 
  56.      */
  57.     function process({
  58.  
  59.         // ログインチェック
  60.         SC_Utils::sfIsSuccess(new SC_Session());
  61.  
  62.         $mode = isset($_GET['mode']$_GET['mode''';
  63.         switch ($mode{
  64.         case 'detail':
  65.             $objForm $this->initParam();
  66.             if ($objForm->checkError()) {
  67.                 SC_Utils::sfDispError('');
  68.             }
  69.             $this->arrLogDetail $this->getLogDetail($objForm->getValue('log_id'));
  70.             if (count($this->arrLogDetail== 0{
  71.                 SC_Utils::sfDispError('');
  72.             }
  73.             $this->tpl_mainpage = 'ownersstore/log_detail.tpl';
  74.             break;
  75.         default:
  76.             break;
  77.         }
  78.         $this->arrInstallLogs $this->getLogs();
  79.  
  80.         // ページ出力
  81.         $objView new SC_AdminView();
  82.         $objView->assignObj($this);
  83.         $objView->display(MAIN_FRAME);
  84.     }
  85.  
  86.     /**
  87.      * デストラクタ.
  88.      *
  89.      * @return void 
  90.      */
  91.     function destroy({
  92.         parent::destroy();
  93.     }
  94.  
  95.     function getLogs({
  96.         $sql =<<<END
  97. SELECT
  98.     *
  99. FROM
  100.     dtb_module_update_logs JOIN (
  101.     SELECT
  102.         module_id,
  103.         module_name
  104.     FROM
  105.         dtb_module
  106.     ) AS modules USING(module_id)
  107. ORDER BY update_date DESC
  108. END;
  109.         $objQuery new SC_Query;
  110.         $arrRet $objQuery->getAll($sql);
  111.         return isset($arrRet$arrRet array();
  112.     }
  113.  
  114.     function initParam({
  115.         $objForm new SC_FormParam();
  116.         $objForm->addParam('log_id''log_id'INT_LEN''array('EXIST_CHECK''NUM_CHECK''MAX_LENGTH_CHECK'));
  117.         $objForm->setParam($_GET);
  118.         return $objForm;
  119.     }
  120.  
  121.     function getLogDetail($log_id{
  122.             $sql =<<<END
  123. SELECT
  124.     *
  125. FROM
  126.     dtb_module_update_logs JOIN (
  127.     SELECT
  128.         module_id,
  129.         module_name
  130.     FROM
  131.         dtb_module
  132.     ) AS modules USING(module_id)
  133. WHERE
  134.     log_id = ?
  135. END;
  136.         $objQuery new SC_Query;
  137.         $arrRet $objQuery->getAll($sqlarray($log_id));
  138.         return isset($arrRet[0]$arrRet[0array();
  139.     }
  140. }
  141. ?>

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