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/mail/LC_Page_Admin_Mail_TemplateInput.php

    r22206 r22567  
    3232 * @version $Id$ 
    3333 */ 
    34 class LC_Page_Admin_Mail_TemplateInput extends LC_Page_Admin_Ex { 
     34class LC_Page_Admin_Mail_TemplateInput 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 = 'mail/template_input.tpl'; 
     
    5961     * @return void 
    6062     */ 
    61     function process() { 
     63    function process() 
     64    { 
    6265        $this->action(); 
    6366        $this->sendResponse(); 
     
    6972     * @return void 
    7073     */ 
    71     function action() { 
     74    function action() 
     75    { 
    7276 
    7377        $objMailHelper = new SC_Helper_Mail_Ex(); 
     
    115119     * @return void 
    116120     */ 
    117     function destroy() { 
     121    function destroy() 
     122    { 
    118123        parent::destroy(); 
    119124    } 
     
    126131     * @return void 
    127132     */ 
    128     function lfRegistData(&$objFormParam, $template_id = null) { 
     133    function lfRegistData(&$objFormParam, $template_id = null) 
     134    { 
    129135 
    130136        $objQuery =& SC_Query_Ex::getSingletonInstance(); 
     
    154160     * @return void 
    155161     */ 
    156     function lfInitParam(&$objFormParam) { 
     162    function lfInitParam(&$objFormParam) 
     163    { 
    157164        $objFormParam->addParam('メール形式', 'mail_method', INT_LEN, 'n', array('EXIST_CHECK','ALNUM_CHECK')); 
    158165        $objFormParam->addParam('Subject', 'subject', STEXT_LEN, 'KVa', array('EXIST_CHECK','SPTAB_CHECK','MAX_LENGTH_CHECK')); 
Note: See TracChangeset for help on using the changeset viewer.