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

    r22563 r22567  
    3232 * @version $Id$ 
    3333 */ 
    34 class LC_Page_MyPage extends LC_Page_AbstractMypage_Ex { 
     34class LC_Page_MyPage extends LC_Page_AbstractMypage_Ex  
     35{ 
    3536 
    3637    // {{{ properties 
     
    4748     * @return void 
    4849     */ 
    49     function init() { 
     50    function init() 
     51    { 
    5052        parent::init(); 
    5153        $this->tpl_mypageno = 'index'; 
     
    6668     * @return void 
    6769     */ 
    68     function process() { 
     70    function process() 
     71    { 
    6972        parent::process(); 
    7073    } 
     
    7578     * @return void 
    7679     */ 
    77     function action() { 
     80    function action() 
     81    { 
    7882 
    7983        $objCustomer = new SC_Customer_Ex(); 
     
    113117     * @return void 
    114118     */ 
    115     function destroy() { 
     119    function destroy() 
     120    { 
    116121        parent::destroy(); 
    117122    } 
     
    125130     * @return void 
    126131     */ 
    127     function lfGetOrderHistory($customer_id, $startno = -1) { 
     132    function lfGetOrderHistory($customer_id, $startno = -1) 
     133    { 
    128134        $objQuery   = SC_Query_Ex::getSingletonInstance(); 
    129135 
Note: See TracChangeset for help on using the changeset viewer.