File: Create new folders in the filemounts * * Revised for TYPO3 3.6 November/2003 by Kasper Skårhøj * * @author Kasper Skårhøj */ $BACK_PATH = ''; require('init.php'); require('template.php'); /** * Script Class for the create-new script; Displays a form for creating up to 10 folders or one new text file * * @author Kasper Skårhøj * @package TYPO3 * @subpackage core */ class SC_file_newfolder { // External, static: var $folderNumber=10; // Internal, static: /** * document template object * * @var smallDoc */ var $doc; var $title; // Name of the filemount // Internal, static (GPVar): var $number; var $target; // Set with the target path inputted in &target /** * the folder object which is the target directory * * @var t3lib_file_Folder $folderObject */ protected $folderObject; var $returnUrl; // Return URL of list module. // Internal, dynamic: var $content; // Accumulating content /** * Constructor function for class * * @return void */ function init() { // Initialize GPvars: $this->number = t3lib_div::_GP('number'); $this->target = $combinedIdentifier = t3lib_div::_GP('target'); $this->returnUrl = t3lib_div::sanitizeLocalUrl(t3lib_div::_GP('returnUrl')); // create the folder object if ($combinedIdentifier) { $this->folderObject = t3lib_file_Factory::getInstance()->getFolderObjectFromCombinedIdentifier($combinedIdentifier); } // Cleaning and checking target directory if (!$this->folderObject) { $title = $GLOBALS['LANG']->sL('LLL:EXT:lang/locallang_mod_file_list.xml:paramError', TRUE); $message = $GLOBALS['LANG']->sL('LLL:EXT:lang/locallang_mod_file_list.xml:targetNoDir', TRUE); throw new RuntimeException($title . ': ' . $message, 1294586843); } // Setting the title and the icon $icon = t3lib_iconWorks::getSpriteIcon('apps-filetree-root'); $this->title = $icon . htmlspecialchars($this->folderObject->getStorage()->getName()) . ': ' . htmlspecialchars($this->folderObject->getIdentifier()); // Setting template object $this->doc = t3lib_div::makeInstance('template'); $this->doc->setModuleTemplate('templates/file_newfolder.html'); $this->doc->backPath = $GLOBALS['BACK_PATH']; $this->doc->JScode=$this->doc->wrapScriptTags(' var path = "' . $this->target . '"; function reload(a) { // if (!changed || (changed && confirm(' . $GLOBALS['LANG']->JScharCode($GLOBALS['LANG']->sL('LLL:EXT:lang/locallang_core.php:mess.redraw')) . '))) { var params = "&target="+encodeURIComponent(path)+"&number="+a+"&returnUrl=' . rawurlencode($this->returnUrl) . '"; window.location.href = "file_newfolder.php?"+params; } } function backToList() { // top.goToModule("file_list"); } var changed = 0; '); } /** * Main function, rendering the main module content * * @return void */ function main() { // start content compilation $this->content .= $this->doc->startPage($GLOBALS['LANG']->sL('LLL:EXT:lang/locallang_core.php:file_newfolder.php.pagetitle')); // Make page header: $pageContent=''; $pageContent.=$this->doc->header($GLOBALS['LANG']->sL('LLL:EXT:lang/locallang_core.php:file_newfolder.php.pagetitle')); $pageContent.=$this->doc->spacer(5); $pageContent.=$this->doc->divider(5); $code = '
'; // Making the selector box for the number of concurrent folder-creations $this->number = t3lib_utility_Math::forceIntegerInRange($this->number,1,10); $code .= '
'; // Making the number of new-folder boxes needed: $code.='
'; for ($a=0;$a<$this->number;$a++) { $code.=' doc->formWidth(20).' type="text" name="file[newfolder]['.$a.'][data]" onchange="changed=true;" />
'; } $code.='
'; // Making submit button for folder creation: $code.='
'; // CSH: $code.= t3lib_BEfunc::cshItem('xMOD_csh_corebe', 'file_newfolder', $GLOBALS['BACK_PATH'], '
'); $pageContent.= $code; // Add spacer: $pageContent.= $this->doc->spacer(10); // Switching form tags: $pageContent.= $this->doc->sectionEnd(); $pageContent.= '
'; // Create a list of allowed file extensions with the nice format "*.jpg, *.gif" etc. $fileExtList = array(); $textfileExt = t3lib_div::trimExplode(',', $GLOBALS['TYPO3_CONF_VARS']['SYS']['textfile_ext'], TRUE); foreach ($textfileExt as $fileExt) { if (!preg_match('/' . $GLOBALS['TYPO3_CONF_VARS']['BE']['fileDenyPattern'] . '/i', '.' . $fileExt)) { $fileExtList[] = '*.' . $fileExt; } } // Add form fields for creation of a new, blank text file: $code='

[' . htmlspecialchars(implode(', ', $fileExtList)) . ']

doc->formWidth(20).' type="text" name="file[newfile][0][data]" onchange="changed=true;" />
'; // Submit button for creation of a new file: $code.='
'; // CSH: $code.= t3lib_BEfunc::cshItem('xMOD_csh_corebe', 'file_newfile', $GLOBALS['BACK_PATH'], '
'); $pageContent .= $this->doc->section($GLOBALS['LANG']->sL('LLL:EXT:lang/locallang_core.php:file_newfolder.php.newfile'), $code); $pageContent .= $this->doc->sectionEnd(); $pageContent .= '
'; $docHeaderButtons = array(); // Add the HTML as a section: $markerArray = array( 'CSH' => $docHeaderButtons['csh'], 'FUNC_MENU' => t3lib_BEfunc::getFuncMenu($this->id, 'SET[function]', $this->MOD_SETTINGS['function'], $this->MOD_MENU['function']), 'CONTENT' => $pageContent, 'PATH' => $this->title, ); $this->content.= $this->doc->moduleBody(array(), $docHeaderButtons, $markerArray); $this->content.= $this->doc->endPage(); $this->content = $this->doc->insertStylesAndJS($this->content); } /** * Outputting the accumulated content to screen * * @return void */ function printContent() { echo $this->content; } } // Make instance: $SOBE = t3lib_div::makeInstance('SC_file_newfolder'); $SOBE->init(); $SOBE->main(); $SOBE->printContent(); ?>