Source for file LC_Page_Admin_Design_Header.php

Documentation is available at LC_Page_Admin_Design_Header.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$
  33.  */
  34.  
  35.     // }}}
  36.     // {{{ functions
  37.  
  38.     /**
  39.      * Page を初期化する.
  40.      *
  41.      * @return void 
  42.      */
  43.     function init({
  44.         parent::init();
  45.         $this->tpl_mainpage = 'design/header.tpl';
  46.         $this->tpl_subnavi  'design/subnavi.tpl';
  47.         $this->header_row 13;
  48.         $this->footer_row 13;
  49.         $this->tpl_subno "header";
  50.         $this->tpl_mainno = "design";
  51.         $this->tpl_subtitle 'ヘッダー・フッター編集';
  52.     }
  53.  
  54.     /**
  55.      * Page のプロセス.
  56.      *
  57.      * @return void 
  58.      */
  59.     function process({
  60.         $objView new SC_AdminView();
  61.  
  62.         // 認証可否の判定
  63.         $objSess new SC_Session();
  64.         SC_Utils_Ex::sfIsSuccess($objSess);
  65.  
  66.         $division = isset($_POST['division']$_POST['division'"";
  67.         $pre_DIR USER_INC_PATH 'preview/';
  68.  
  69.         // データ更新処理
  70.         if ($division != ''){
  71.             // プレビュー用テンプレートに書き込み
  72.             $fp fopen($pre_DIR.$division.'.tpl',"w")// TODO
  73.             fwrite($fp$_POST[$division]);
  74.             fclose($fp);
  75.  
  76.             // 登録時はプレビュー用テンプレートをコピーする
  77.             if ($_POST['mode'== 'confirm'){
  78.                 copy($pre_DIR.$division.".tpl"USER_PATH USER_PACKAGE_DIR TEMPLATE_NAME "/" $division ".tpl");
  79.                 // 完了メッセージ(プレビュー時は表示しない)
  80.                 $this->tpl_onload="alert('登録が完了しました。');";
  81.  
  82.                 // テキストエリアの幅を元に戻す(処理の統一のため)
  83.                 $_POST['header_row'"";
  84.                 $_POST['footer_row'"";
  85.             }else if ($_POST['mode'== 'preview'){
  86.                 if ($division == "header"$this->header_prev "on";
  87.                 if ($division == "footer"$this->footer_prev "on";
  88.             }
  89.  
  90.             // ヘッダーファイルの読み込み(プレビューデータ)
  91.             $header_data file_get_contents($pre_DIR "header.tpl");
  92.  
  93.             // フッターファイルの読み込み(プレビューデータ)
  94.             $footer_data file_get_contents($pre_DIR "footer.tpl");
  95.         }else{
  96.             // postでデータが渡されなければ新規読み込みと判断をし、プレビュー用データを正規のデータで上書きする
  97.             if (!is_dir($pre_DIR)) {
  98.                 mkdir($pre_DIR);
  99.             }
  100.  
  101.             // ユーザーパスにテンプレートが存在しなければ,
  102.             // 指定テンプレートから読み込む
  103.             $header_tpl USER_PATH USER_PACKAGE_DIR TEMPLATE_NAME "/" "header.tpl";
  104.             if (!is_file($header_tpl)) {
  105.                 $header_tpl TEMPLATE_DIR "header.tpl";
  106.             }
  107.             $footer_tpl USER_PATH USER_PACKAGE_DIR TEMPLATE_NAME "/" "footer.tpl";
  108.             if (!is_file($footer_tpl)) {
  109.                 $footer_tpl TEMPLATE_DIR "footer.tpl";
  110.             }
  111.  
  112.             copy($header_tpl$pre_DIR "header.tpl");
  113.             copy($footer_tpl$pre_DIR "footer.tpl");
  114.  
  115.             // ヘッダーファイルの読み込み
  116.             $header_data file_get_contents($header_tpl);
  117.             // フッターファイルの読み込み
  118.             $footer_data file_get_contents($footer_tpl);
  119.         }
  120.  
  121.         // テキストエリアに表示
  122.         $this->header_data $header_data;
  123.         $this->footer_data $footer_data;
  124.  
  125.         if (isset($_POST['header_row']&& $_POST['header_row'!= ''){
  126.             $this->header_row $_POST['header_row'];
  127.         }
  128.  
  129.         if (isset($_POST['footer_row']&& $_POST['footer_row'!= ''){
  130.             $this->footer_row $_POST['footer_row'];
  131.         }
  132.  
  133.         // ブラウザタイプ
  134.         $this->browser_type =
  135.             isset($_POST['browser_type']$_POST['browser_type'"";
  136.  
  137.         // 画面の表示
  138.         $objView->assignobj($this);
  139.         $objView->display(MAIN_FRAME);
  140.     }
  141.  
  142.     /**
  143.      * デストラクタ.
  144.      *
  145.      * @return void 
  146.      */
  147.     function destroy({
  148.         parent::destroy();
  149.     }
  150. }
  151. ?>

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