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/rss/LC_Page_Rss.php

    r22206 r22567  
    3232 * @version $Id$ 
    3333 */ 
    34 class LC_Page_RSS extends LC_Page_Ex { 
     34class LC_Page_RSS extends LC_Page_Ex  
     35{ 
    3536 
    3637    // }}} 
     
    4243     * @return void 
    4344     */ 
    44     function init() { 
     45    function init() 
     46    { 
    4547        parent::init(); 
    4648        $this->tpl_mainpage = 'rss/index.tpl'; 
     
    5456     * @return void 
    5557     */ 
    56     function process() { 
     58    function process() 
     59    { 
    5760 
    5861        $objQuery = SC_Query_Ex::getSingletonInstance(); 
     
    9093     * @return void 
    9194     */ 
    92     function destroy() { 
     95    function destroy() 
     96    { 
    9397        parent::destroy(); 
    9498    } 
     
    100104     * @return array $arrNews 取得結果を配列で返す 
    101105     */ 
    102     function lfGetNews(&$objQuery) { 
     106    function lfGetNews(&$objQuery) 
     107    { 
    103108        $col = ''; 
    104109        $col .= 'news_id ';        // 新着情報ID 
Note: See TracChangeset for help on using the changeset viewer.