Ignore:
Timestamp:
2013/02/18 19:09:54 (14 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/abouts/LC_Page_Abouts.php

    r22206 r22567  
    3232 * @version $Id:LC_Page_Abouts.php 15532 2007-08-31 14:39:46Z nanasess $ 
    3333 */ 
    34 class LC_Page_Abouts extends LC_Page_Ex { 
     34class LC_Page_Abouts extends LC_Page_Ex  
     35{ 
    3536 
    3637    // }}} 
     
    4243     * @return void 
    4344     */ 
    44     function init() { 
     45    function init() 
     46    { 
    4547        parent::init(); 
    4648        $this->tpl_page_category = 'abouts'; 
     
    5557     * @return void 
    5658     */ 
    57     function process() { 
     59    function process() 
     60    { 
    5861        parent::process(); 
    5962        $this->action(); 
     
    6669     * @return void 
    6770     */ 
    68     function action() { 
     71    function action() 
     72    { 
    6973 
    7074        $this->objSiteInfo->data = SC_Helper_DB_Ex::sfGetBasisData(); 
     
    8185     * @return void 
    8286     */ 
    83     function destroy() { 
     87    function destroy() 
     88    { 
    8489        parent::destroy(); 
    8590    } 
Note: See TracChangeset for help on using the changeset viewer.