67 lines
1.9 KiB
PHP
67 lines
1.9 KiB
PHP
|
|
<?php
|
||
|
|
/**
|
||
|
|
* DOCman 1.4.x - Joomla! Document Manager
|
||
|
|
* @version $Id: upload.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_HTML_UPLOAD')) {
|
||
|
|
return;
|
||
|
|
} else {
|
||
|
|
define('_DOCMAN_HTML_UPLOAD', 1);
|
||
|
|
}
|
||
|
|
|
||
|
|
class HTML_DMUpload
|
||
|
|
{
|
||
|
|
function uploadMethodsForm($lists)
|
||
|
|
{
|
||
|
|
ob_start();
|
||
|
|
?>
|
||
|
|
<form action="<?php echo sefRelToAbs($lists['action']);?>" method="post" id="dm_frmupload" class="dm_form">
|
||
|
|
<fieldset class="input">
|
||
|
|
<p><label for="method"><?php echo _DML_UPLOADMETHOD;?></label><br />
|
||
|
|
<?php echo $lists['methods'];?></p>
|
||
|
|
</fieldset>
|
||
|
|
<fieldset class="dm_button">
|
||
|
|
<p><input name="submit" class="button" value="<?php echo _DML_NEXT;?>" type="submit" /></p>
|
||
|
|
</fieldset>
|
||
|
|
</form>
|
||
|
|
<?php
|
||
|
|
$html = ob_get_contents();
|
||
|
|
ob_end_clean();
|
||
|
|
|
||
|
|
return $html;
|
||
|
|
}
|
||
|
|
|
||
|
|
function updateDocumentForm($list, $links, $paths, $data)
|
||
|
|
{
|
||
|
|
$action = _taskLink('doc_update_process', $data->id);
|
||
|
|
|
||
|
|
ob_start();
|
||
|
|
?>
|
||
|
|
<form action="<?php echo sefRelToAbs($action) ?>" method="post" enctype="multipart/form-data" id="dm_frmupdate" class="dm_form" >
|
||
|
|
<fieldset class="input">
|
||
|
|
<p>
|
||
|
|
<label for="upload"><?php echo _DML_SELECTFILE;?></label><br />
|
||
|
|
<input id="upload" name="upload" type="file" />
|
||
|
|
</p>
|
||
|
|
</fieldset>
|
||
|
|
<fieldset class="dm_button">
|
||
|
|
<p>
|
||
|
|
<input name="submit" class="button" value="<?php echo _DML_UPLOAD ?>" type="submit" />
|
||
|
|
</p>
|
||
|
|
</fieldset>
|
||
|
|
<?php echo DOCMAN_token::render();?>
|
||
|
|
</form>
|
||
|
|
<?php
|
||
|
|
$html = ob_get_contents();
|
||
|
|
ob_end_clean();
|
||
|
|
|
||
|
|
return $html;
|
||
|
|
}
|
||
|
|
}
|