rhymix/modules/autoinstall/autoinstall.view.php
haneul d5c98490ad #18427049 : add autoinstall module
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@6915 201d5d3c-b55e-5fd7-737f-ddc643e51545
2009-11-10 13:21:36 +00:00

26 lines
623 B
PHP

<?php
/**
* @class autoinstallView
* @author sol (sol@ngleader.com)
* @brief autoinstall 모듈의 View class
**/
class autoinstallView extends autoinstall {
/**
* @brief 초기화
**/
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;
}
}
?>