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/admin/contents/LC_Page_Admin_Contents_FileView.php

    r22567 r22796  
    3232 * @version $Id$ 
    3333 */ 
    34 class LC_Page_Admin_Contents_FileView extends LC_Page_Admin_Ex  
    35 { 
     34class LC_Page_Admin_Contents_FileView extends LC_Page_Admin_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        $this->action(); 
    5855        $this->sendResponse(); 
     
    6461     * @return void 
    6562     */ 
    66     function action() 
    67     { 
     63    function action() { 
    6864 
    6965        switch ($this->getMode()) { 
     
    9389     * @return void 
    9490     */ 
    95     function destroy() 
    96     { 
     91    function destroy() { 
    9792        parent::destroy(); 
    9893    } 
     
    10499     * @return void 
    105100     */ 
    106     function lfInitParam(&$objFormParam) 
    107     { 
     101    function lfInitParam(&$objFormParam) { 
    108102        $objFormParam->addParam('ファイル名', 'file', MTEXT_LEN, 'a', array('EXIST_CHECK')); 
    109103    } 
     
    115109     * @return boolen $file_check_flg エラーチェックの結果 
    116110     */ 
    117     function checkErrorDispFile($objFormParam) 
    118     { 
     111    function checkErrorDispFile($objFormParam) { 
    119112        $file_check_flg = false; 
    120113 
     
    134127     * @return void 
    135128     */ 
    136     function execFileView($objFormParam) 
    137     { 
     129    function execFileView($objFormParam) { 
    138130        $file = $objFormParam->getValue('file'); 
    139131 
Note: See TracChangeset for help on using the changeset viewer.