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/basis/LC_Page_Admin_Basis_ZipInstall.php

    r22926 r23124  
    4646{ 
    4747    /** CSVの行数 */ 
    48     var $tpl_line = 0; 
    49     var $tpl_mode; 
    50     var $exec; 
    51     var $tpl_count_mtb_zip; 
     48    public $tpl_line = 0; 
     49    public $tpl_mode; 
     50    public $exec; 
     51    public $tpl_count_mtb_zip; 
    5252 
    5353    /** CSV の更新日時 */ 
    54     var $tpl_csv_datetime; 
     54    public $tpl_csv_datetime; 
    5555 
    5656    /** 日本郵便から取得した ZIP アーカイブファイルの保管パス */ 
    57     var $zip_csv_temp_realfile; 
     57    public $zip_csv_temp_realfile; 
    5858 
    5959    /** 
     
    6262     * @return void 
    6363     */ 
    64     function init() 
     64    public function init() 
    6565    { 
    6666        parent::init(); 
     
    7272 
    7373        $this->tpl_mode = $this->getMode(); 
    74         $this->exec = (boolean)$_GET['exec']; 
     74        $this->exec = (boolean) $_GET['exec']; 
    7575        $this->zip_csv_temp_realfile = DATA_REALDIR . 'downloads/tmp/ken_all.zip'; 
    7676    } 
     
    8181     * @return void 
    8282     */ 
    83     function process() 
     83    public function process() 
    8484    { 
    8585        $this->action(); 
     
    9292     * @return void 
    9393     */ 
    94     function action() 
     94    public function action() 
    9595    { 
    9696        // パラメーター管理クラス 
     
    157157    } 
    158158 
    159     function lfAutoCommitZip() 
     159    public function lfAutoCommitZip() 
    160160    { 
    161161        $objQuery =& SC_Query_Ex::getSingletonInstance(); 
     
    173173     * @return void 
    174174     */ 
    175     function lfDeleteZip() 
     175    public function lfDeleteZip() 
    176176    { 
    177177        $objQuery =& SC_Query_Ex::getSingletonInstance(); 
     
    189189     * @return void 
    190190     */ 
    191     function lfInitParam($tpl_mode, &$objFormParam) 
     191    public function lfInitParam($tpl_mode, &$objFormParam) 
    192192    { 
    193193        if ($tpl_mode == 'manual') { 
     
    201201     * @return void 
    202202     */ 
    203     function insertMtbZip($start = 1) 
     203    public function insertMtbZip($start = 1) 
    204204    { 
    205205        $objQuery =& SC_Query_Ex::getSingletonInstance(); 
     
    284284    } 
    285285 
    286     function openZipCsv() 
     286    public function openZipCsv() 
    287287    { 
    288288        $this->convertZipCsv(); 
     
    295295    } 
    296296 
    297     function convertZipCsv() 
     297    public function convertZipCsv() 
    298298    { 
    299299        if (file_exists(ZIP_CSV_UTF8_REALFILE)) return; 
     
    317317    } 
    318318 
    319     function countMtbZip() 
     319    public function countMtbZip() 
    320320    { 
    321321        $objQuery =& SC_Query_Ex::getSingletonInstance(); 
     
    324324    } 
    325325 
    326     function countZipCsv() 
     326    public function countZipCsv() 
    327327    { 
    328328        $line = 0; 
     
    350350     * @return void 
    351351     */ 
    352     function lfDownloadZipFileFromJp() 
     352    public function lfDownloadZipFileFromJp() 
    353353    { 
    354354        // Proxy経由を可能とする。 
     
    380380     * @return void 
    381381     */ 
    382     function lfExtractZipFile() 
     382    public function lfExtractZipFile() 
    383383    { 
    384384        $zip = zip_open($this->zip_csv_temp_realfile); 
     
    434434     * @return string CSV の更新日時 (整形済みテキスト) 
    435435     */ 
    436     function lfGetCsvDatetime() 
     436    public function lfGetCsvDatetime() 
    437437    { 
    438438        return date('Y/m/d H:i:s', filemtime(ZIP_CSV_REALFILE)); 
Note: See TracChangeset for help on using the changeset viewer.