Changeset 18394
- Timestamp:
- 2009/11/24 19:15:41 (13 years ago)
- 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 28 28 */ 29 29 30 require(DATA_PATH . 'pdf/japanese.php'); 31 define('PDF_TEMPLATE_DIR', DATA_PATH . 'pdf/'); 30 require(DATA_PATH . 'module/pdf/japanese.php'); 32 31 define('PDF_IMG_DIR', HTML_PATH. USER_DIR. USER_PACKAGE_DIR. TEMPLATE_NAME. '/img/pdf/'); 33 32 … … 36 35 $this->arrData = $arrData; 37 36 // デフォルトの設定 38 $this->tpl_pdf = PDF_ TEMPLATE_DIR . $tpl_pdf; // テンプレートファイル37 $this->tpl_pdf = PDF_DIR . $tpl_pdf; // テンプレートファイル 39 38 $this->pdf_download = $download; // PDFのダウンロード形式(0:表示、1:ダウンロード) 40 39 $this->tpl_title = $title; … … 125 124 126 125 //ロゴ画像 127 $logo_file = PDF_ TEMPLATE_DIR . 'logo.png';126 $logo_file = PDF_IMG_DIR . 'logo.png'; 128 127 $this->pdf->Image($logo_file, 124, 46, 40); 129 128 }
Note: See TracChangeset
for help on using the changeset viewer.