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/mypage/LC_Page_Mypage_MailView.php

    r22206 r22567  
    3232 * @version $Id$ 
    3333 */ 
    34 class LC_Page_Mypage_MailView extends LC_Page_AbstractMypage_Ex { 
     34class LC_Page_Mypage_MailView extends LC_Page_AbstractMypage_Ex  
     35{ 
    3536 
    3637    // }}} 
     
    4243     * @return void 
    4344     */ 
    44     function init() { 
     45    function init() 
     46    { 
    4547        parent::init(); 
    4648        $this->httpCacheControl('nocache'); 
     
    5254     * @return void 
    5355     */ 
    54     function process() { 
     56    function process() 
     57    { 
    5558        parent::process(); 
    5659    } 
     
    6164     * @return void 
    6265     */ 
    63     function action() { 
     66    function action() 
     67    { 
    6468 
    6569        $objCustomer = new SC_Customer_Ex(); 
     
    101105     * @return void 
    102106     */ 
    103     function destroy() { 
     107    function destroy() 
     108    { 
    104109        parent::destroy(); 
    105110    } 
     
    113118     * @return array 
    114119     */ 
    115     function lfGetMailView($send_id, $customer_id) { 
     120    function lfGetMailView($send_id, $customer_id) 
     121    { 
    116122        $objQuery   = SC_Query_Ex::getSingletonInstance(); 
    117123        $col        = 'subject, mail_body'; 
Note: See TracChangeset for help on using the changeset viewer.