Ignore:
Timestamp:
2013/03/10 00:18:16 (11 years ago)
Author:
adachi
Message:

#2181 インデントとか修正

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/camp/camp-2_13-plugin/data/class/plugin/SC_Plugin_Installer.php

    r22661 r22662  
    2929    protected $arrInstallData; 
    3030     
    31     function __construct($arrPlugin) { 
     31    public function __construct($arrPlugin) { 
    3232        $this->arrPlugin   = $arrPlugin; 
    3333        $this->arrInstallData = array(); 
     
    3939    } 
    4040     
    41     function execInstall() { 
     41    public function execInstall() { 
    4242        GC_Utils_Ex::gfPrintLog("start install"); 
    4343         
     
    8181    } 
    8282     
    83     function copyFile($src, $dist) { 
     83    public function copyFile($src, $dist) { 
    8484        $this->arrInstallData['copy_file'][] = array( 
    85             'src'    => $src, 
     85            'src'  => $src, 
    8686            'dist' => $dist 
    8787        ); 
    8888    } 
    8989  
    90     function copyDirectory($src, $dist) { 
     90    public function copyDirectory($src, $dist) { 
    9191        $this->arrInstallData['copy_directory'][] = array( 
    92             'src'    => $src, 
     92            'src'  => $src, 
    9393            'dist' => $dist 
    9494        );         
    9595    } 
    9696     
    97     function removeFile($dist) { 
     97    public function removeFile($dist) { 
    9898        $this->arrInstallData['remove_file'][] = array( 
    9999            'dist' => $dist 
     
    101101    } 
    102102     
    103     function removeDirectory($dist) { 
     103    public function removeDirectory($dist) { 
    104104       $this->arrInstallData['remove_file'][] = array( 
    105105            'dist' => $dist 
Note: See TracChangeset for help on using the changeset viewer.