Changeset 18394 for branches/version-2_4


Ignore:
Timestamp:
2009/11/24 19:15:41 (14 years ago)
Author:
kajiwara
Message:

#529 pdf 関連モジュールを適切な場所に配置変更いたしました。

Location:
branches/version-2_4/data
Files:
9 added
11 deleted
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_4/data/class/SC_Fpdf.php

    r18102 r18394  
    2828 */ 
    2929 
    30 require(DATA_PATH . 'pdf/japanese.php'); 
    31 define('PDF_TEMPLATE_DIR', DATA_PATH . 'pdf/'); 
     30require(DATA_PATH . 'module/pdf/japanese.php'); 
    3231define('PDF_IMG_DIR', HTML_PATH. USER_DIR. USER_PACKAGE_DIR. TEMPLATE_NAME. '/img/pdf/'); 
    3332 
     
    3635        $this->arrData = $arrData; 
    3736        // デフォルトの設定 
    38         $this->tpl_pdf = PDF_TEMPLATE_DIR . $tpl_pdf;  // テンプレートファイル 
     37        $this->tpl_pdf = PDF_DIR . $tpl_pdf;  // テンプレートファイル 
    3938        $this->pdf_download = $download;      // PDFのダウンロード形式(0:表示、1:ダウンロード) 
    4039        $this->tpl_title = $title; 
     
    125124 
    126125        //ロゴ画像 
    127         $logo_file = PDF_TEMPLATE_DIR . 'logo.png'; 
     126        $logo_file = PDF_IMG_DIR . 'logo.png'; 
    128127        $this->pdf->Image($logo_file, 124, 46, 40); 
    129128    } 
Note: See TracChangeset for help on using the changeset viewer.