mirror of
https://github.com/e107inc/e107.git
synced 2025-07-28 10:20:45 +02:00
41 lines
1.1 KiB
Python
41 lines
1.1 KiB
Python
// $Id: uploadfile.sc,v 1.3 2009-08-15 15:44:37 marj_nl_fr Exp $
|
|
|
|
// Your <form> tag must include: enctype='multipart/form-data' - in order to work.
|
|
// parm is the path to the upload folder.
|
|
global $pref;
|
|
|
|
if(!FILE_UPLOADS)
|
|
{
|
|
return LAN_UPLOAD_SERVEROFF;
|
|
}
|
|
if(USER_AREA === TRUE && !check_class($pref['upload_class']))
|
|
{
|
|
return LAN_DISABLED;
|
|
}
|
|
|
|
|
|
if($parm && !is_writable($parm))
|
|
{
|
|
return LAN_UPLOAD_777." <b>".str_replace("../","",$parm)."</b>";
|
|
}
|
|
|
|
$name = "file_userfile[]";
|
|
//FIXME - XHTML/JS standards
|
|
$text .="
|
|
<!-- Upload Shortcode -->
|
|
<div>
|
|
<div class='field-spacer'>
|
|
<button type='button' class='action duplicate' value='no-value' onclick=\"duplicateHTML('upline','up_container');\"><span>".LAN_UPLOAD_ADDFILE."</span></button>
|
|
<button class='upload' type='submit' name='uploadfiles' value='no-value' onclick=\"return jsconfirm('".LAN_UPLOAD_CONFIRM."')\"><span>".LAN_UPLOAD_FILES."</span></button>
|
|
</div>
|
|
<div id='up_container'>
|
|
<div id='upline' class='nowrap'>
|
|
<input class='tbox' type='file' name='{$name}' size='40' />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<!-- End Upload Shortcode -->
|
|
";
|
|
|
|
return $text;
|