This repository has been archived on 2024-11-28. You can view files and clone it, but cannot push or open issues or pull requests.
MatritumCantat_Web/www/components/com_docman/includes_frontend/download.html.php
2012-09-18 20:02:43 +00:00

42 lines
1.2 KiB
PHP

<?php
/**
* DOCman 1.4.x - Joomla! Document Manager
* @version $Id: download.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_DOWNLOAD')) {
return;
} else {
define('_DOCMAN_HTML_DOWNLOAD', 1);
}
class HTML_DMDownload
{
function licenseDocumentForm(&$links, &$paths, &$data, $inline=0)
{
$action = _taskLink('license_result', mosGetParam( $_REQUEST, 'gid', 0) , array('bid' => $data->id));
ob_start();
?>
<form action="<?php echo sefRelToAbs($action);?>" method="POST" enctype="multipart/form-data">
<input type="hidden" name="inline" value="<?php echo $inline?>" />
<input type="radio" name="agree" value="0" checked /><?php echo _DML_DONT_AGREE;?>
<input type="radio" name="agree" value="1" /><?php echo _DML_AGREE;?>
<input name="submit" value="<?php echo _DML_PROCEED;?>" type="submit" />
</form>
<?php
$html = ob_get_contents();
ob_end_clean();
return $html;
}
}