2 /***************************************************************
5 * (c) 1999-2004 Kasper Skaarhoj (kasper@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: Create new folders in the filemounts
31 * Revised for TYPO3 3.6 November/2003 by Kasper Skaarhoj
33 * @author Kasper Skaarhoj <kasper@typo3.com>
36 * [CLASS/FUNCTION INDEX of SCRIPT]
40 * 76: class SC_file_newfolder
41 * 102: function init()
42 * 161: function main()
43 * 248: function printContent()
46 * (This index is automatically created/updated by the extension "extdeveval")
54 require ('template.php');
55 require_once (PATH_t3lib
.'class.t3lib_basicfilefunc.php');
70 * Script Class for the create-new script; Displays a form for creating up to 10 folders or one new text file
72 * @author Kasper Skaarhoj <kasper@typo3.com>
76 class SC_file_newfolder
{
82 var $doc; // Template object.
83 var $basicff; // Instance of "t3lib_basicFileFunctions"
84 var $icon; // Will be set to the proper icon for the $target value.
85 var $shortPath; // Relative path to current found filemount
86 var $title; // Name of the filemount
88 // Internal, static (GPVar):
90 var $target; // Set with the target path inputted in &target
93 var $content; // Accumulating content
98 * Constructor function for class
103 global $LANG,$BACK_PATH,$TYPO3_CONF_VARS;
105 // Initialize GPvars:
106 $this->number
= t3lib_div
::_GP('number');
107 $this->target
= t3lib_div
::_GP('target');
109 // Init basic-file-functions object:
110 $this->basicff
= t3lib_div
::makeInstance('t3lib_basicFileFunctions');
111 $this->basicff
->init($GLOBALS['FILEMOUNTS'],$TYPO3_CONF_VARS['BE']['fileExtensions']);
113 // Cleaning and checking target
114 $this->target
=$this->basicff
->is_directory($this->target
);
115 $key=$this->basicff
->checkPathAgainstMounts($this->target
.'/');
116 if (!$this->target ||
!$key) {
117 t3lib_BEfunc
::typo3PrintError ('Parameter Error','Target was not a directory!','');
122 switch($GLOBALS['FILEMOUNTS'][$key]['type']) {
123 case 'user': $this->icon
= 'gfx/i/_icon_ftp_user.gif'; break;
124 case 'group': $this->icon
= 'gfx/i/_icon_ftp_group.gif'; break;
125 default: $this->icon
= 'gfx/i/_icon_ftp.gif'; break;
128 // Relative path to filemount, $key:
129 $this->shortPath
= substr($this->target
,strlen($GLOBALS['FILEMOUNTS'][$key]['path']));
132 $this->title
= $GLOBALS['FILEMOUNTS'][$key]['name'].': '.$this->shortPath
;
134 // Setting template object
135 $this->doc
= t3lib_div
::makeInstance('smallDoc');
136 $this->doc
->docType
= 'xhtml_trans';
137 $this->doc
->backPath
= $BACK_PATH;
138 $this->doc
->form
='<form action="tce_file.php" method="post" name="editform">';
139 $this->doc
->JScode
=$this->doc
->wrapScriptTags('
140 var path = "'.$this->target
.'";
142 function reload(a) { //
143 if (!changed || (changed && confirm('.$LANG->JScharCode($LANG->sL('LLL:EXT:lang/locallang_core.php:mess.redraw')).'))) {
144 var params = "&target="+escape(path)+"&number="+a;
145 document.location = "file_newfolder.php?"+params;
148 function backToList() { //
149 top.goToModule("file_list");
157 * Main function, rendering the main module content
166 $this->content
.=$this->doc
->startPage($LANG->sL('LLL:EXT:lang/locallang_core.php:file_newfolder.php.pagetitle'));
167 $this->content
.=$this->doc
->header($LANG->sL('LLL:EXT:lang/locallang_core.php:file_newfolder.php.pagetitle'));
168 $this->content
.=$this->doc
->spacer(5);
169 $this->content
.=$this->doc
->section('',$this->doc
->getFileheader($this->title
,$this->shortPath
,$this->icon
));
170 $this->content
.=$this->doc
->divider(5);
173 // Making the selector box for the number of concurrent folder-creations
174 $this->number
= t3lib_div
::intInRange($this->number
,1,10);
177 <select name="number" onchange="reload(this.options[this.selectedIndex].value);">';
178 for ($a=1;$a<=$this->folderNumber
;$a++
) {
180 <option value="'.$a.'"'.($this->number
==$a?
' selected="selected"':'').'>'.$a.' '.$LANG->sL('LLL:EXT:lang/locallang_core.php:file_newfolder.php.folders',1).'</option>';
187 // Making the number of new-folder boxes needed:
189 <div id="c-createFolders">
191 for ($a=0;$a<$this->number
;$a++
) {
193 <input'.$this->doc
->formWidth(20).' type="text" name="file[newfolder]['.$a.'][data]" onchange="changed=true;" />
194 <input type="hidden" name="file[newfolder]['.$a.'][target]" value="'.htmlspecialchars($this->target
).'" />
201 // Making submit button for folder creation:
203 <div id="c-submitFolders">
204 <input type="submit" value="'.$LANG->sL('LLL:EXT:lang/locallang_core.php:file_newfolder.php.submit',1).'" />
205 <input type="submit" value="'.$LANG->sL('LLL:EXT:lang/locallang_core.php:labels.cancel',1).'" onclick="backToList(); return false;" />
208 $this->content
.= $this->doc
->section('',$code);
213 $this->content
.= $this->doc
->spacer(10);
215 // Switching form tags:
216 $this->content
.= $this->doc
->sectionEnd();
217 $this->content
.= '</form><form action="tce_file.php" method="post" name="editform2">';
219 // Add form fields for creation of a new, blank text file:
222 <p>['.htmlspecialchars($GLOBALS['TYPO3_CONF_VARS']['SYS']['textfile_ext']).']</p>
223 <input'.$this->doc
->formWidth(20).' type="text" name="file[newfile][0][data]" onchange="changed=true;" />
224 <input type="hidden" name="file[newfile][0][target]" value="'.htmlspecialchars($this->target
).'" />
228 // Submit button for creation of a new file:
230 <div id="c-submitFiles">
231 <input type="submit" value="'.$LANG->sL('LLL:EXT:lang/locallang_core.php:file_newfolder.php.newfile_submit',1).'" />
232 <input type="submit" value="'.$LANG->sL('LLL:EXT:lang/locallang_core.php:labels.cancel',1).'" onclick="backToList(); return false;" />
236 // Add the HTML as a section:
237 $this->content
.= $this->doc
->section($LANG->sL('LLL:EXT:lang/locallang_core.php:file_newfolder.php.newfile'),$code);
240 $this->content
.= $this->doc
->endPage();
244 * Outputting the accumulated content to screen
248 function printContent() {
254 // Include extension?
255 if (defined('TYPO3_MODE') && $TYPO3_CONF_VARS[TYPO3_MODE
]['XCLASS']['typo3/file_newfolder.php']) {
256 include_once($TYPO3_CONF_VARS[TYPO3_MODE
]['XCLASS']['typo3/file_newfolder.php']);
271 $SOBE = t3lib_div
::makeInstance('SC_file_newfolder');
274 $SOBE->printContent();