Ignore:
Timestamp:
2013/02/18 19:09:54 (11 years ago)
Author:
shutta
Message:

#2043 (typo修正・ソース整形・ソースコメントの改善 for 2.12.4)
Zend Framework PHP 標準コーディング規約のコーディングスタイルへ準拠。
classおよびfunctionの開始波括弧「{」のスタイルを修正。

File:
1 edited

Legend:

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

    r22206 r22567  
    3232 * @version $Id$ 
    3333 */ 
    34 class LC_Page_Admin_Contents_FileView extends LC_Page_Admin_Ex { 
     34class LC_Page_Admin_Contents_FileView extends LC_Page_Admin_Ex  
     35{ 
    3536 
    3637    // }}} 
     
    4243     * @return void 
    4344     */ 
    44     function init() { 
     45    function init() 
     46    { 
    4547        parent::init(); 
    4648    } 
     
    5153     * @return void 
    5254     */ 
    53     function process() { 
     55    function process() 
     56    { 
    5457        $this->action(); 
    5558        $this->sendResponse(); 
     
    6164     * @return void 
    6265     */ 
    63     function action() { 
     66    function action() 
     67    { 
    6468 
    6569        switch ($this->getMode()) { 
     
    8993     * @return void 
    9094     */ 
    91     function destroy() { 
     95    function destroy() 
     96    { 
    9297        parent::destroy(); 
    9398    } 
     
    99104     * @return void 
    100105     */ 
    101     function lfInitParam(&$objFormParam) { 
     106    function lfInitParam(&$objFormParam) 
     107    { 
    102108        $objFormParam->addParam('ファイル名', 'file', MTEXT_LEN, 'a', array('EXIST_CHECK')); 
    103109    } 
     
    109115     * @return boolen $file_check_flg エラーチェックの結果 
    110116     */ 
    111     function checkErrorDispFile($objFormParam) { 
     117    function checkErrorDispFile($objFormParam) 
     118    { 
    112119        $file_check_flg = false; 
    113120 
     
    127134     * @return void 
    128135     */ 
    129     function execFileView($objFormParam) { 
     136    function execFileView($objFormParam) 
     137    { 
    130138        $file = $objFormParam->getValue('file'); 
    131139 
Note: See TracChangeset for help on using the changeset viewer.