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_Mail.php

    r22304 r22567  
    3232 * @version $Id$ 
    3333 */ 
    34 class LC_Page_Admin_Basis_Mail extends LC_Page_Admin_Ex { 
     34class LC_Page_Admin_Basis_Mail 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/mail.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        $masterData = new SC_DB_MasterData_Ex(); 
     
    120124     * @return void 
    121125     */ 
    122     function destroy() { 
     126    function destroy() 
     127    { 
    123128        parent::destroy(); 
    124129    } 
    125130 
    126     function lfGetMailTemplateByTemplateID($template_id) { 
     131    function lfGetMailTemplateByTemplateID($template_id) 
     132    { 
    127133        $objQuery =& SC_Query_Ex::getSingletonInstance(); 
    128134 
     
    131137    } 
    132138 
    133     function lfRegistMailTemplate($post, $member_id) { 
     139    function lfRegistMailTemplate($post, $member_id) 
     140    { 
    134141        $objQuery =& SC_Query_Ex::getSingletonInstance(); 
    135142 
     
    148155    } 
    149156 
    150     function lfInitParam($mode, &$objFormParam) { 
     157    function lfInitParam($mode, &$objFormParam) 
     158    { 
    151159        switch ($mode) { 
    152160            case 'regist': 
Note: See TracChangeset for help on using the changeset viewer.