50 lines
1.8 KiB
PHP
50 lines
1.8 KiB
PHP
|
|
<?php
|
||
|
|
/**
|
||
|
|
* DOCman 1.4.x - Joomla! Document Manager
|
||
|
|
* @version $Id: upload.http.html.php 765 2009-01-05 20:55:57Z mathias $
|
||
|
|
* @package DOCman_1.4
|
||
|
|
* @copyright (C) 2003-2009 Joomlatools
|
||
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU/GPL
|
||
|
|
* @link http://www.joomlatools.eu/ Official website
|
||
|
|
**/
|
||
|
|
defined('_VALID_MOS') or die('Restricted access');
|
||
|
|
|
||
|
|
if (defined('_DOCMAN_METHOD_HTTP_HTML')) {
|
||
|
|
return;
|
||
|
|
} else {
|
||
|
|
define('_DOCMAN_METHOD_HTTP_HTML', 1);
|
||
|
|
}
|
||
|
|
|
||
|
|
class HTML_DMUploadMethod
|
||
|
|
{
|
||
|
|
function uploadFileForm($lists)
|
||
|
|
{
|
||
|
|
global $mosConfig_live_site;
|
||
|
|
$progressImg = $mosConfig_live_site.'/administrator/components/com_docman/images/dm_progress.gif';
|
||
|
|
ob_start();
|
||
|
|
?>
|
||
|
|
<form action="<?php echo sefRelToAbs($lists['action']) ;?>" method="post" enctype="multipart/form-data" id="dm_frmupload" class="dm_form">
|
||
|
|
<fieldset class="input">
|
||
|
|
<p><div id="progress" style="display:none;"><img style="border:1px solid black;" src="<?php echo $progressImg?>" alt="Upload Progress" /> <?php echo _DML_ISUPLOADING?></div>
|
||
|
|
<label for="upload"><?php echo _DML_SELECTFILE;?></label><br />
|
||
|
|
<input id="upload" name="upload" type="file" name="file" />
|
||
|
|
|
||
|
|
</p>
|
||
|
|
</fieldset>
|
||
|
|
<fieldset class="dm_button">
|
||
|
|
<input name="submit" id="dm_btn_back" class="button" value="<?php echo _DML_BACK;?>" onclick="window.history.back()" type="button" >
|
||
|
|
<input name="submit" id="dm_btn_submit" class="button" value="<?php echo _DML_UPLOAD;?>" type="submit" onclick="document.getElementById('progress').style.display = 'block';" />
|
||
|
|
</fieldset>
|
||
|
|
<input type="hidden" name="method" value="http" />
|
||
|
|
<?php echo DOCMAN_token::render();?>
|
||
|
|
</form>
|
||
|
|
|
||
|
|
<?php
|
||
|
|
$html = ob_get_contents();
|
||
|
|
ob_end_clean();
|
||
|
|
|
||
|
|
return $html;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|