mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-05 17:51:40 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/branches/1.5.0@10753 201d5d3c-b55e-5fd7-737f-ddc643e51545
31 lines
666 B
PHP
31 lines
666 B
PHP
<?php
|
|
|
|
/**
|
|
* View class of the autoinstall module
|
|
* @author NHN (developers@xpressengine.com)
|
|
**/
|
|
class autoinstallView extends autoinstall {
|
|
|
|
/**
|
|
* Initialization
|
|
*
|
|
* @return void
|
|
**/
|
|
function init() {
|
|
}
|
|
|
|
/**
|
|
* Test
|
|
*
|
|
* @return Object
|
|
*/
|
|
function dispAutoinstallTest(){
|
|
$file = "modules.test.tar";
|
|
$checksum = '549989037bd8401d39b83ca2393d8131';
|
|
$file = "modules.test.skins.test.tar";
|
|
$oAutoinstallAdminController = &getAdminController('autoinstall');
|
|
$output = $oAutoinstallAdminController->install($file, $checksum);
|
|
return $output;
|
|
}
|
|
}
|
|
?>
|