File: Upload of files * * $Id$ * Revised for TYPO3 3.6 November/2003 by Kasper Skaarhoj * * @author Kasper Skaarhoj */ /** * [CLASS/FUNCTION INDEX of SCRIPT] * * * * 78: class SC_file_upload * 103: function init() * 161: function main() * 229: function printContent() * * TOTAL FUNCTIONS: 3 * (This index is automatically created/updated by the extension "extdeveval") * */ $BACK_PATH=''; require ('init.php'); require ('template.php'); include ('sysext/lang/locallang_misc.php'); require_once (PATH_t3lib.'class.t3lib_basicfilefunc.php'); /** * Script Class for display up to 10 upload fields * * @author Kasper Skaarhoj * @package TYPO3 * @subpackage core */ class SC_file_upload { // External, static: var $uploadNumber=10; // Internal, static: var $doc; // Template object. var $basicff; // Instance of "t3lib_basicFileFunctions" var $icon; // Will be set to the proper icon for the $target value. var $shortPath; // Relative path to current found filemount var $title; // Name of the filemount // Internal, static (GPVar): var $number; var $target; // Set with the target path inputted in &target // Internal, dynamic: var $content; // Accumulating content /** * Constructor for initializing the class * * @return void */ function init() { global $LANG,$BACK_PATH,$TYPO3_CONF_VARS; // Initialize GPvars: $this->number = t3lib_div::GPvar('number'); $this->target = t3lib_div::GPvar('target'); // Init basic-file-functions object: $this->basicff = t3lib_div::makeInstance('t3lib_basicFileFunctions'); $this->basicff->init($GLOBALS['FILEMOUNTS'],$TYPO3_CONF_VARS['BE']['fileExtensions']); // Cleaning and checking target $this->target=$this->basicff->is_directory($this->target); // Cleaning and checking target $key=$this->basicff->checkPathAgainstMounts($this->target.'/'); if (!$this->target || !$key) { t3lib_BEfunc::typo3PrintError ('Parameter Error','Target was not a directory!',''); exit; } // Finding the icon switch($GLOBALS['FILEMOUNTS'][$key]['type']) { case 'user': $this->icon = 'gfx/i/_icon_ftp_user.gif'; break; case 'group': $this->icon = 'gfx/i/_icon_ftp_group.gif'; break; default: $this->icon = 'gfx/i/_icon_ftp.gif'; break; } // Relative path to filemount, $key: $this->shortPath = substr($this->target,strlen($GLOBALS['FILEMOUNTS'][$key]['path'])); // Setting title: $this->title = $GLOBALS['FILEMOUNTS'][$key]['name'].': '.$this->shortPath; // Setting template object $this->doc = t3lib_div::makeInstance('smallDoc'); $this->doc->docType = 'xhtml_trans'; $this->doc->backPath = $BACK_PATH; $this->doc->form='
'; $this->doc->JScode=$this->doc->wrapScriptTags(' var path = "'.$this->target.'"; function reload(a) { // if (!changed || (changed && confirm('.$LANG->JScharCode($LANG->sL('LLL:EXT:lang/locallang_core.php:mess.redraw')).'))) { var params = "&target="+escape(path)+"&number="+a; document.location = "file_upload.php?"+params; } } function backToList() { // top.goToModule("file_list"); } var changed = 0; '); } /** * Main function, rendering the upload file form fields * * @return void */ function main() { global $LANG; // Make page header: $this->content=''; $this->content.=$this->doc->startPage($LANG->sL('LLL:EXT:lang/locallang_core.php:file_upload.php.pagetitle')); $this->content.=$this->doc->header($LANG->sL('LLL:EXT:lang/locallang_core.php:file_upload.php.pagetitle')); $this->content.=$this->doc->spacer(5); $this->content.=$this->doc->section('',$this->doc->getFileheader($this->title,$this->shortPath,$this->icon)); $this->content.=$this->doc->divider(5); // Making the selector box for the number of concurrent uploads $this->number = t3lib_div::intInRange($this->number,1,10); $code='
'; // Make checkbox for "overwrite" $code.='
'.$LANG->getLL('overwriteExistingFiles',1).'
'; // Produce the number of upload-fields needed: $code.='
'; for ($a=0;$a<$this->number;$a++) { $code.=' doc->formWidth(35).' onclick="changed=1;" />
'; } $code.='
'; // Submit button: $code.='
'; // Add the HTML as a section: $this->content.= $this->doc->section('',$code); // Ending page $this->content.= $this->doc->endPage(); } /** * Outputting the accumulated content to screen * * @return void */ function printContent() { echo $this->content; } } // Include extension? if (defined('TYPO3_MODE') && $TYPO3_CONF_VARS[TYPO3_MODE]['XCLASS']['typo3/file_upload.php']) { include_once($TYPO3_CONF_VARS[TYPO3_MODE]['XCLASS']['typo3/file_upload.php']); } // Make instance: $SOBE = t3lib_div::makeInstance('SC_file_upload'); $SOBE->init(); $SOBE->main(); $SOBE->printContent(); ?>