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/basis/LC_Page_Admin_Basis_Holiday.php

    r22206 r22567  
    3232 * @version $Id$ 
    3333 */ 
    34 class LC_Page_Admin_Basis_Holiday extends LC_Page_Admin_Ex { 
     34class LC_Page_Admin_Basis_Holiday extends LC_Page_Admin_Ex  
     35{ 
    3536 
    3637    // }}} 
     
    4243     * @return void 
    4344     */ 
    44     function init() { 
     45    function init() 
     46    { 
    4547        parent::init(); 
    4648        $this->tpl_mainpage = 'basis/holiday.tpl'; 
     
    5658     * @return void 
    5759     */ 
    58     function process() { 
     60    function process() 
     61    { 
    5962        $this->action(); 
    6063        $this->sendResponse(); 
     
    6669     * @return void 
    6770     */ 
    68     function action() { 
     71    function action() 
     72    { 
    6973 
    7074        $objDb = new SC_Helper_DB_Ex(); 
     
    163167     * @return void 
    164168     */ 
    165     function destroy() { 
     169    function destroy() 
     170    { 
    166171        parent::destroy(); 
    167172    } 
    168173 
    169     function lfGetHolidayDataByHolidayID($holiday_id) { 
     174    function lfGetHolidayDataByHolidayID($holiday_id) 
     175    { 
    170176        $objQuery =& SC_Query_Ex::getSingletonInstance(); 
    171177 
     
    174180    } 
    175181 
    176     function lfGetHolidayList() { 
     182    function lfGetHolidayList() 
     183    { 
    177184        $objQuery =& SC_Query_Ex::getSingletonInstance(); 
    178185 
     
    183190 
    184191    /* DBへの挿入 */ 
    185     function lfInsertClass($arrData, $member_id) { 
     192    function lfInsertClass($arrData, $member_id) 
     193    { 
    186194        $objQuery =& SC_Query_Ex::getSingletonInstance(); 
    187195        // INSERTする値を作成する。 
     
    200208 
    201209    /* DBへの更新 */ 
    202     function lfUpdateClass($arrData) { 
     210    function lfUpdateClass($arrData) 
     211    { 
    203212        $objQuery =& SC_Query_Ex::getSingletonInstance(); 
    204213        // UPDATEする値を作成する。 
     
    213222    } 
    214223 
    215     function lfInitParam($mode, &$objFormParam) { 
     224    function lfInitParam($mode, &$objFormParam) 
     225    { 
    216226        switch ($mode) { 
    217227            case 'edit': 
     
    237247     * @return array 
    238248     */ 
    239     function lfCheckError($mode, &$objFormParam) { 
     249    function lfCheckError($mode, &$objFormParam) 
     250    { 
    240251        $objFormParam->convParam(); 
    241252        $arrErr = $objFormParam->checkError(); 
Note: See TracChangeset for help on using the changeset viewer.