rhymix/modules/autoinstall/autoinstall.view.php
mosmartin 4d272994dd english comments added
git-svn-id: http://xe-core.googlecode.com/svn/branches/1.5.0_english@8278 201d5d3c-b55e-5fd7-737f-ddc643e51545
2011-04-06 16:48:06 +00:00

26 lines
642 B
PHP

<?php
/**
* @class autoinstallView
* @author NHN (developers@xpressengine.com)
* @brief View class of the autoinstall module
**/
class autoinstallView extends autoinstall {
/**
* @brief Initialization
**/
function init() {
}
function dispAutoinstallTest(){
$file = "modules.test.tar";
$checksum = '549989037bd8401d39b83ca2393d8131';
$file = "modules.test.skins.test.tar";
$oAutoinstallAdminController = &getAdminController('autoinstall');
$output = $oAutoinstallAdminController->install($file, $checksum);
return $output;
}
}
?>