Ignore:
Timestamp:
2013/08/26 15:52:37 (11 years ago)
Author:
m_uehara
Message:

#2348 r23116 - r23125 をマージ

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_13_0/data/class/helper/SC_Helper_FPDI.php

    r22778 r23126  
    99{ 
    1010    /** SJIS 変換を有効とするか */ 
    11     var $enable_conv_sjis = true; 
     11    public $enable_conv_sjis = true; 
    1212 
    1313    /** 
     
    1616     * @return void 
    1717     */ 
    18     function AddSJISFont() 
     18    public function AddSJISFont() 
    1919    { 
    2020        parent::AddSJISFont(); 
     
    2525    } 
    2626 
    27     function SJISMultiCell() 
     27    public function SJISMultiCell() 
    2828    { 
    2929        $arrArg = func_get_args(); 
     
    4545     * FIXME: 後の列の高さが大きい場合、表示が乱れる。 
    4646     */ 
    47     function FancyTable($header, $data, $w) 
     47    public function FancyTable($header, $data, $w) 
    4848    { 
    4949        $base_x = $this->x; 
     
    9595    } 
    9696 
    97     function Text($x, $y, $txt) 
     97    public function Text($x, $y, $txt) 
    9898    { 
    9999        parent::Text($x, $y, $this->lfConvSjis($txt)); 
    100100    } 
    101101 
    102     function Cell($w, $h=0, $txt='', $border=0, $ln=0, $align='', $fill=false, $link='') 
     102    public function Cell($w, $h=0, $txt='', $border=0, $ln=0, $align='', $fill=false, $link='') 
    103103    { 
    104104        parent::Cell($w, $h, $this->lfConvSjis($txt), $border, $ln, $align, $fill, $link); 
     
    106106 
    107107    // 文字コードSJIS変換 -> japanese.phpで使用出来る文字コードはSJIS-winのみ 
    108     function lfConvSjis($conv_str) 
     108    public function lfConvSjis($conv_str) 
    109109    { 
    110110        if ($this->enable_conv_sjis) { 
Note: See TracChangeset for help on using the changeset viewer.