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/system/LC_Page_Admin_System_Rank.php

    r22206 r22567  
    3232 * @version $Id$ 
    3333 */ 
    34 class LC_Page_Admin_System_Rank extends LC_Page_Admin_Ex { 
     34class LC_Page_Admin_System_Rank extends LC_Page_Admin_Ex  
     35{ 
    3536    // }}} 
    3637    // {{{ functions 
     
    4142     * @return void 
    4243     */ 
    43     function init() { 
     44    function init() 
     45    { 
    4446        parent::init(); 
    4547    } 
     
    5052     * @return void 
    5153     */ 
    52     function process() { 
     54    function process() 
     55    { 
    5356        $this->action(); 
    5457        $this->sendResponse(); 
     
    6063     * @return void 
    6164     */ 
    62     function action() { 
     65    function action() 
     66    { 
    6367 
    6468        // チェック後のデータを格納 
     
    108112     * @return void 
    109113     */ 
    110     function destroy() { 
     114    function destroy() 
     115    { 
    111116        parent::destroy(); 
    112117    } 
    113118 
    114119    // ランキングを上げる。 
    115     function lfRunkUp($id) { 
     120    function lfRunkUp($id) 
     121    { 
    116122        $objQuery =& SC_Query_Ex::getSingletonInstance(); 
    117123 
     
    143149 
    144150    // ランキングを下げる。 
    145     function lfRunkDown($id) { 
     151    function lfRunkDown($id) 
     152    { 
    146153        $objQuery =& SC_Query_Ex::getSingletonInstance(); 
    147154 
Note: See TracChangeset for help on using the changeset viewer.