Installer::install PHP 메소드

install() 공개 정적인 메소드

public static install ( $app = 'application' )
    public static function install($app = 'application')
    {
        self::recursiveCopy(dirname(__FILE__) . '/application/tests', $app . '/' . static::TEST_FOLDER);
        self::fixPath($app);
    }

Usage Example

예제 #1
0
파일: install.php 프로젝트: 01J/bealtine
 function com_install()
 {
     register_shutdown_function("deleteExtFolder");
     $installer = new Installer();
     $installer->install();
     return true;
 }
All Usage Examples Of Installer::install