Ignore:
Timestamp:
2013/08/24 23:33:52 (11 years ago)
Author:
kimoto
Message:

#2043 typo修正・ソース整形・ソースコメントの改善 for 2.13.0
PHP4的な書き方の修正

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_13-dev/data/class/pages/admin/system/LC_Page_Admin_System.php

    r22926 r23124  
    3838     * @return void 
    3939     */ 
    40     function init() 
     40    public function init() 
    4141    { 
    4242        parent::init(); 
     
    6262     * @return void 
    6363     */ 
    64     function process() 
     64    public function process() 
    6565    { 
    6666        $this->action(); 
     
    7373     * @return void 
    7474     */ 
    75     function action() 
     75    public function action() 
    7676    { 
    7777        // ADMIN_ID以外の管理者件数を取得 
     
    9898     * 
    9999     * @access private 
    100      * @param string $where WHERE句 
     100     * @param  string $where WHERE句 
    101101     * @return integer 件数 
    102102     */ 
    103     function getMemberCount($where) 
     103    public function getMemberCount($where) 
    104104    { 
    105105        $objQuery =& SC_Query_Ex::getSingletonInstance(); 
     
    113113     * 
    114114     * @access private 
    115      * @param integer $startno 開始行番号 
    116      * @return array 管理者データの連想配列 
     115     * @param  integer $startno 開始行番号 
     116     * @return array   管理者データの連想配列 
    117117     */ 
    118     function getMemberData($startno) 
     118    public function getMemberData($startno) 
    119119    { 
    120120        $col = 'member_id,name,department,login_id,authority,rank,work'; 
     
    133133     * 
    134134     * @access private 
    135      * @param integer $pageno ページの番号($_GETから入ってきた値) 
     135     * @param  integer $pageno ページの番号($_GETから入ってきた値) 
    136136     * @return integer $clean_pageno チェック後のページの番号 
    137137     */ 
    138     function lfCheckPageNo($pageno) 
     138    public function lfCheckPageNo($pageno) 
    139139    { 
    140140        $clean_pageno = ''; 
Note: See TracChangeset for help on using the changeset viewer.