Installer::install PHP Method

install() public static method

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

Example #1
0
 function com_install()
 {
     register_shutdown_function("deleteExtFolder");
     $installer = new Installer();
     $installer->install();
     return true;
 }
All Usage Examples Of Installer::install