Ignore:
Timestamp:
2013/05/02 18:11:36 (11 years ago)
Author:
h_yoshimoto
Message:

#2236 2.12.3リリース以降の2.12-devへのコミット差し戻し

File:
1 edited

Legend:

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

    r22567 r22796  
    3232 * @version $Id$ 
    3333 */ 
    34 class LC_Page_ResizeImage extends LC_Page_Ex  
    35 { 
     34class LC_Page_ResizeImage extends LC_Page_Ex { 
    3635 
    3736    // }}} 
     
    4342     * @return void 
    4443     */ 
    45     function init() 
    46     { 
     44    function init() { 
    4745        parent::init(); 
    4846    } 
     
    5351     * @return void 
    5452     */ 
    55     function process() 
    56     { 
     53    function process() { 
    5754        parent::process(); 
    5855        $this->action(); 
     
    6461     * @return void 
    6562     */ 
    66     function action() 
    67     { 
     63    function action() { 
    6864        $objFormParam = new SC_FormParam_Ex(); 
    6965        $this->lfInitParam($objFormParam); 
     
    9490     * @return void 
    9591     */ 
    96     function destroy() 
    97     { 
     92    function destroy() { 
    9893        parent::destroy(); 
    9994    } 
    10095 
    101     function lfInitParam(&$objFormParam) 
    102     { 
     96    function lfInitParam(&$objFormParam) { 
    10397        $objFormParam->addParam('画像ファイル名', 'image', STEXT_LEN, 'a',  array('MAX_LENGTH_CHECK')); 
    10498        $objFormParam->addParam('画像の幅', 'width', STEXT_LEN, 'n',  array('NUM_CHECK')); 
     
    111105     * @return boolean 正常な形式:true 不正な形式:false 
    112106     */ 
    113     function lfCheckFileName() 
    114     { 
     107    function lfCheckFileName() { 
    115108        //$pattern = '|^[0-9]+_[0-9a-z]+\.[a-z]{3}$|'; 
    116109        $pattern = '|\./|'; 
     
    132125     * @return void 
    133126     */ 
    134     function lfOutputImage($file, $width, $height) 
    135     { 
     127    function lfOutputImage($file, $width, $height) { 
    136128        $objThumb = new gdthumb(); 
    137129        $objThumb->Main($file, $width, $height, '', true); 
Note: See TracChangeset for help on using the changeset viewer.