Ignore:
Timestamp:
2013/08/24 23:33:52 (11 years ago)
Author:
kimoto
Message:

#2043 typo修正・ソース整形・ソースコメントの改善 for 2.13.0
PHP4的な書き方の修正

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_13-dev/data/class/pages/LC_Page_ResizeImage.php

    r23057 r23124  
    3838     * @return void 
    3939     */ 
    40     function init() 
     40    public function init() 
    4141    { 
    4242        $this->skip_load_page_layout = true; 
     
    4949     * @return void 
    5050     */ 
    51     function process() 
     51    public function process() 
    5252    { 
    5353        parent::process(); 
     
    6060     * @return void 
    6161     */ 
    62     function action() 
     62    public function action() 
    6363    { 
    6464        $objFormParam = new SC_FormParam_Ex(); 
     
    8787    } 
    8888 
    89     function lfInitParam(&$objFormParam) 
     89    public function lfInitParam(&$objFormParam) 
    9090    { 
    9191        $objFormParam->addParam('商品ID', 'product_id', INT_LEN, 'n',  array('NUM_CHECK', 'MAX_LENGTH_CHECK')); 
     
    103103     * @return boolean 正常な形式:true 不正な形式:false 
    104104     */ 
    105     function lfCheckFileName($image) 
     105    public function lfCheckFileName($image) 
    106106    { 
    107107        $file    = trim($image); 
     
    119119     * @return string 指定された商品画像のパス 
    120120     */ 
    121     function lfGetProductImage($arrForm) 
     121    public function lfGetProductImage($arrForm) 
    122122    { 
    123123        $objQuery = SC_Query_Ex::getSingletonInstance(); 
     
    141141     * 画像の出力 
    142142     * 
    143      * @param string $file 画像ファイル名 
    144      * @param integer $width 画像の幅 
     143     * @param string  $file  画像ファイル名 
     144     * @param integer $width  画像の幅 
    145145     * @param integer $height 画像の高さ 
    146146     * 
    147147     * @return void 
    148148     */ 
    149     function lfOutputImage($file, $width, $height) 
     149    public function lfOutputImage($file, $width, $height) 
    150150    { 
    151151        $objThumb = new gdthumb(); 
Note: See TracChangeset for help on using the changeset viewer.