2 /***************************************************************
5 * (c) 1999-2011 Kasper Skårhøj (kasperYYYY@typo3.com)
8 * This script is part of the TYPO3 project. The TYPO3 project is
9 * free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * The GNU General Public License can be found at
15 * http://www.gnu.org/copyleft/gpl.html.
16 * A copy is found in the textfile GPL.txt and important notices to the license
17 * from the author is found in LICENSE.txt distributed with these scripts.
20 * This script is distributed in the hope that it will be useful,
21 * but WITHOUT ANY WARRANTY; without even the implied warranty of
22 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 * GNU General Public License for more details.
25 * This copyright notice MUST APPEAR in all copies of the script!
26 ***************************************************************/
28 * Web>File: Upload of files
30 * Revised for TYPO3 3.6 November/2003 by Kasper Skårhøj
32 * @author Kasper Skårhøj <kasperYYYY@typo3.com>
37 require('template.php');
38 $LANG->includeLLFile('EXT:lang/locallang_misc.xml');
46 * Script Class for display up to 10 upload fields
48 * @author Kasper Skårhøj <kasperYYYY@typo3.com>
52 class SC_file_upload
{
55 var $uploadNumber = 10;
59 * Document template object
66 * File processing object
68 * @var t3lib_basicFileFunctions
71 var $icon; // Will be set to the proper icon for the $target value.
72 var $shortPath; // Relative path to current found filemount
73 var $title; // Name of the filemount
76 * Charset processing object
80 protected $charsetConversion;
82 // Internal, static (GPVar):
84 var $target; // Set with the target path inputted in &target
85 var $returnUrl; // Return URL of list module.
88 var $content; // Accumulating content
92 * Constructor for initializing the class
98 $this->number
= t3lib_div
::_GP('number');
99 $this->target
= t3lib_div
::_GP('target');
100 $this->returnUrl
= t3lib_div
::sanitizeLocalUrl(t3lib_div
::_GP('returnUrl'));
101 $this->returnUrl
= $this->returnUrl ?
$this->returnUrl
: t3lib_div
::getIndpEnv('TYPO3_SITE_URL') . TYPO3_mainDir
. t3lib_extMgm
::extRelPath('filelist') . 'mod1/file_list.php?id=' . rawurlencode($this->target
);
103 // set the number of input fields
104 if (empty($this->number
)) {
105 $this->number
= $GLOBALS['BE_USER']->getTSConfigVal('options.defaultFileUploads');
107 $this->number
= t3lib_utility_Math
::forceIntegerInRange($this->number
, 1, $this->uploadNumber
);
109 // Init basic-file-functions object:
110 $this->basicff
= t3lib_div
::makeInstance('t3lib_basicFileFunctions');
111 $this->basicff
->init($GLOBALS['FILEMOUNTS'], $GLOBALS['TYPO3_CONF_VARS']['BE']['fileExtensions']);
113 // Init basic-charset-functions object:
114 $this->charsetConversion
= t3lib_div
::makeInstance('t3lib_cs');
116 // Cleaning and checking target
117 $this->target
= $this->charsetConversion
->conv($this->target
, 'utf-8', $GLOBALS['LANG']->charSet
);
118 $this->target
= $this->basicff
->is_directory($this->target
);
119 $key = $this->basicff
->checkPathAgainstMounts($this->target
. '/');
120 if (!$this->target ||
!$key) {
121 $title = $GLOBALS['LANG']->sL('LLL:EXT:lang/locallang_mod_file_list.xml:paramError', TRUE
);
122 $message = $GLOBALS['LANG']->sL('LLL:EXT:lang/locallang_mod_file_list.xml:targetNoDir', TRUE
);
123 throw new RuntimeException($title . ': ' . $message, 1294586845);
127 switch ($GLOBALS['FILEMOUNTS'][$key]['type']) {
129 $this->icon
= 'gfx/i/_icon_ftp_user.gif';
132 $this->icon
= 'gfx/i/_icon_ftp_group.gif';
135 $this->icon
= 'gfx/i/_icon_ftp.gif';
139 $this->icon
= '<img' . t3lib_iconWorks
::skinImg($GLOBALS['BACK_PATH'], $this->icon
, 'width="18" height="16"') . ' title="" alt="" />';
141 // Relative path to filemount, $key:
142 $this->shortPath
= substr($this->target
, strlen($GLOBALS['FILEMOUNTS'][$key]['path']));
145 $this->title
= $this->icon
. htmlspecialchars($GLOBALS['FILEMOUNTS'][$key]['name']) . ': ' . $this->shortPath
;
147 // Setting template object
148 $this->doc
= t3lib_div
::makeInstance('template');
149 $this->doc
->setModuleTemplate('templates/file_upload.html');
150 $this->doc
->backPath
= $GLOBALS['BACK_PATH'];
151 $this->doc
->form
= '<form action="tce_file.php" method="post" name="editform" enctype="' . $GLOBALS['TYPO3_CONF_VARS']['SYS']['form_enctype'] . '">';
153 if($GLOBALS['BE_USER']->jsConfirmation(1)) {
154 $confirm = ' && confirm(' . $GLOBALS['LANG']->JScharCode($GLOBALS['LANG']->sL('LLL:EXT:lang/locallang_core.php:mess.redraw')) . ')';
158 $this->doc
->JScode
= $this->doc
->wrapScriptTags('
159 var path = "'.$this->target
.'";
161 function reload(a) { //
162 if (!changed || (changed ' . $confirm . ')) {
163 var params = "&target="+encodeURIComponent(path)+"&number="+a+"&returnUrl='
164 . urlencode($this->charsetConversion
->conv($this->returnUrl
, $GLOBALS['LANG']->charSet
, 'utf-8'))
166 window.location.href = "file_upload.php?"+params;
169 function backToList() { //
170 top.goToModule("file_list");
178 * Main function, rendering the upload file form fields
184 $this->content
= $this->doc
->startPage($GLOBALS['LANG']->sL('LLL:EXT:lang/locallang_core.php:file_upload.php.pagetitle'));
186 $form = $this->renderUploadForm();
189 $this->doc
->header($GLOBALS['LANG']->sL('LLL:EXT:lang/locallang_core.php:file_upload.php.pagetitle')) .
190 $this->doc
->section('', $form);
194 $docHeaderButtons = array(
195 'csh' => t3lib_BEfunc
::cshItem('xMOD_csh_corebe', 'file_upload', $GLOBALS['BACK_PATH'])
198 $markerArray = array(
199 'CSH' => $docHeaderButtons['csh'],
200 'FUNC_MENU' => t3lib_BEfunc
::getFuncMenu($this->id
, 'SET[function]', $this->MOD_SETTINGS
['function'], $this->MOD_MENU
['function']),
201 'CONTENT' => $pageContent,
202 'PATH' => $this->title
,
205 $this->content
.= $this->doc
->moduleBody(array(), $docHeaderButtons, $markerArray);
206 $this->content
.= $this->doc
->endPage();
207 $this->content
= $this->doc
->insertStylesAndJS($this->content
);
212 * This function renders the upload form
214 * @return string the HTML form as a string, ready for outputting
216 function renderUploadForm() {
219 <label for="number-of-uploads">' .
220 $GLOBALS['LANG']->sL('LLL:EXT:lang/locallang_core.php:file_upload.php.number_of_files') .
222 <select name="number" id="number-of-uploads" onchange="reload(this.options[this.selectedIndex].value);">';
224 for ($a = 1; $a <= $this->uploadNumber
; $a++
) {
225 $content .= '<option value="' . $a . '"' .
226 ($this->number
== $a ?
' selected="selected"' : '' ) .
227 '>' . $a . '</option>';
235 // Make checkbox for "overwrite"
237 <div id="c-override">
238 <input type="checkbox" class="checkbox" name="overwriteExistingFiles" id="overwriteExistingFiles" value="1" /> <label for="overwriteExistingFiles">' . $GLOBALS['LANG']->getLL('overwriteExistingFiles', 1) . '</label>
243 // Produce the number of upload-fields needed:
247 for ($a = 0; $a < $this->number
; $a++
) {
248 // Adding 'size="50" ' for the sake of Mozilla!
250 <input type="file" name="upload_' . $a . '"' . $this->doc
->formWidth(35) . ' size="50" onclick="changed=1;" />
251 <input type="hidden" name="file[upload][' . $a . '][target]" value="' . htmlspecialchars($this->target
) . '" />
252 <input type="hidden" name="file[upload][' . $a . '][data]" value="' . $a . '" /><br />
262 <input type="submit" value="' . $GLOBALS['LANG']->sL('LLL:EXT:lang/locallang_core.php:file_upload.php.submit', 1) . '" />
263 <input type="submit" value="' . $GLOBALS['LANG']->sL('LLL:EXT:lang/locallang_core.php:labels.cancel', 1) . '" onclick="backToList(); return false;" />
264 <input type="hidden" name="redirect" value="' . htmlspecialchars($this->returnUrl
) . '" />
273 * Outputting the accumulated content to screen
277 function printContent() {
283 if (defined('TYPO3_MODE') && isset($GLOBALS['TYPO3_CONF_VARS'][TYPO3_MODE
]['XCLASS']['typo3/file_upload.php'])) {
284 include_once($GLOBALS['TYPO3_CONF_VARS'][TYPO3_MODE
]['XCLASS']['typo3/file_upload.php']);
289 $SOBE = t3lib_div
::makeInstance('SC_file_upload');
292 $SOBE->printContent();