<?php
/***************************************************************
* Copyright notice
-*
-* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com)
+*
+* (c) 1999-2009 Kasper Skaarhoj (kasperYYYY@typo3.com)
* All rights reserved
*
-* This script is part of the TYPO3 project. The TYPO3 project is
+* This script is part of the TYPO3 project. The TYPO3 project is
* free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
-*
+*
* The GNU General Public License can be found at
* http://www.gnu.org/copyleft/gpl.html.
-* A copy is found in the textfile GPL.txt and important notices to the license
+* A copy is found in the textfile GPL.txt and important notices to the license
* from the author is found in LICENSE.txt distributed with these scripts.
*
-*
+*
* This script is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
*
* This copyright notice MUST APPEAR in all copies of the script!
***************************************************************/
-/**
+/**
* Web>File: Renaming files and folders
*
- * @author Kasper Skaarhoj <kasper@typo3.com>
- * @package TYPO3
- * @subpackage core
+ * $Id$
+ * Revised for TYPO3 3.6 November/2003 by Kasper Skaarhoj
+ *
+ * @author Kasper Skaarhoj <kasperYYYY@typo3.com>
+ */
+/**
+ * [CLASS/FUNCTION INDEX of SCRIPT]
+ *
+ *
+ *
+ * 74: class SC_file_rename
+ * 96: function init()
+ * 149: function main()
+ * 192: function printContent()
+ *
+ * TOTAL FUNCTIONS: 3
+ * (This index is automatically created/updated by the extension "extdeveval")
*
*/
-$BACK_PATH="";
-require ("init.php");
-require ("template.php");
-require_once (PATH_t3lib."class.t3lib_basicfilefunc.php");
+
+$BACK_PATH = '';
+require('init.php');
+require('template.php');
+require_once(PATH_t3lib.'class.t3lib_basicfilefunc.php');
+require_once(PATH_t3lib.'class.t3lib_parsehtml.php');
+
+
-// ***************************
-// Script Classes
-// ***************************
+
+
+
+
+/**
+ * Script Class for the rename-file form.
+ *
+ * @author Kasper Skaarhoj <kasperYYYY@typo3.com>
+ * @package TYPO3
+ * @subpackage core
+ */
class SC_file_rename {
- var $content;
+ // Internal, static:
+ /**
+ * Document template object
+ *
+ * @var smallDoc
+ */
+ var $doc;
+
+ /**
+ * File processing object
+ *
+ * @var t3lib_basicFileFunctions
+ */
var $basicff;
- var $shortPath;
- var $title;
- var $icon;
- var $target;
- var $doc;
+ 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 $target; // Set with the target path inputted in &target
+ var $returnUrl; // Return URL of list module.
+
+ // Internal, dynamic:
+ var $content; // Accumulating content
- // Constructor:
+
+ /**
+ * Constructor function for class
+ *
+ * @return void
+ */
function init() {
- global $BE_USER,$LANG,$BACK_PATH,$TCA_DESCR,$TCA,$HTTP_GET_VARS,$HTTP_POST_VARS,$CLIENT,$TYPO3_CONF_VARS;
+ //TODO remove global
+ global $LANG,$BACK_PATH,$TYPO3_CONF_VARS;
+
+ // Initialize GPvars:
+ $this->target = t3lib_div::_GP('target');
+ $this->returnUrl = t3lib_div::_GP('returnUrl');
+
+ // Init basic-file-functions object:
+ $this->basicff = t3lib_div::makeInstance('t3lib_basicFileFunctions');
+ $this->basicff->init($GLOBALS['FILEMOUNTS'],$TYPO3_CONF_VARS['BE']['fileExtensions']);
- $this->target = t3lib_div::GPvar("target");
- $this->basicff = t3lib_div::makeInstance("t3lib_basicFileFunctions");
- $this->basicff->init($GLOBALS["FILEMOUNTS"],$TYPO3_CONF_VARS["BE"]["fileExtensions"]);
-
- if (@file_exists($this->target)) {
+ // Cleaning and checking target
+ if (file_exists($this->target)) {
$this->target=$this->basicff->cleanDirectoryName($this->target); // Cleaning and checking target (file or dir)
} else {
- $this->target="";
+ $this->target='';
}
- $key=$this->basicff->checkPathAgainstMounts($this->target."/");
+ $key=$this->basicff->checkPathAgainstMounts($this->target.'/');
if (!$this->target || !$key) {
- t3lib_BEfunc::typo3PrintError ("Parameter Error","Target was not a directory!","");
+ t3lib_BEfunc::typo3PrintError ($GLOBALS['LANG']->sL('LLL:EXT:lang/locallang_mod_file_list.xml:paramError', true), $GLOBALS['LANG']->sL('LLL:EXT:lang/locallang_mod_file_list.xml:targetNoDir', true), '');
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;
+ 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;
}
- $this->shortPath = substr($this->target,strlen($GLOBALS["FILEMOUNTS"][$key]["path"]));
- $this->title = $GLOBALS["FILEMOUNTS"][$key]["name"].": ".$this->shortPath;
-
-
-
- // ***************************
- // Setting template object
- // ***************************
- $this->doc = t3lib_div::makeInstance("smallDoc");
+
+ $this->icon = '<img'.t3lib_iconWorks::skinImg($this->backPath,$this->icon,'width="18" height="16"').' title="" alt="" />';
+
+ // Relative path to filemount, $key:
+ $this->shortPath = substr($this->target,strlen($GLOBALS['FILEMOUNTS'][$key]['path']));
+
+ // Setting title:
+ $this->title = $this->icon.$GLOBALS['FILEMOUNTS'][$key]['name'].': '.$this->shortPath;
+
+ // Setting template object
+ $this->doc = t3lib_div::makeInstance('template');
+ $this->doc->setModuleTemplate('templates/file_rename.html');
$this->doc->backPath = $BACK_PATH;
-
- $this->doc->JScode='
- <script language="javascript" type="text/javascript">
- function backToList() {
+ $this->doc->JScode=$this->doc->wrapScriptTags('
+ function backToList() { //
top.goToModule("file_list");
}
- </script>
- ';
- $this->doc->form='<form action="tce_file.php" method="POST" name="editform">';
+ ');
}
+
+ /**
+ * Main function, rendering the content of the rename form
+ *
+ * @return void
+ */
function main() {
- global $BE_USER,$LANG,$BACK_PATH,$TCA_DESCR,$TCA,$HTTP_GET_VARS,$HTTP_POST_VARS,$CLIENT,$TYPO3_CONF_VARS;
-
- $this->content="";
- $this->content.=$this->doc->startPage($LANG->sL("LLL:EXT:lang/locallang_core.php:file_rename.php.pagetitle"));
- $this->content.=$this->doc->header($LANG->sL("LLL:EXT:lang/locallang_core.php:file_rename.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 formfields
- $code='<br>
- <input type="Text" name="file[rename][0][data]" value="'.htmlspecialchars(basename($this->shortPath)).'"'.$GLOBALS["TBE_TEMPLATE"]->formWidth(20).'>
- <input type="Hidden" name="file[rename][0][target]" value="'.$this->target.'"><br>';
-
- $code.='<BR><input type="Submit" value="'.$LANG->sL("LLL:EXT:lang/locallang_core.php:file_rename.php.submit").'"> <input type="Submit" value="'.$LANG->sL("LLL:EXT:lang/locallang_core.php:labels.cancel").'" onClick="backToList(); return false;">';
-
-
- $this->content.= $this->doc->section("",$code);
- }
- function printContent() {
- global $SOBE;
+ //TODO remove global, change $LANG into $GLOBALS['LANG'], change locallang*.php to locallang*.xml
- $this->content.= $this->doc->spacer(10);
- $this->content.= $this->doc->middle();
- $this->content.= $this->doc->endPage();
- echo $this->content;
- }
-}
+ global $LANG;
-// Include extension?
-if (defined("TYPO3_MODE") && $TYPO3_CONF_VARS[TYPO3_MODE]["XCLASS"]["typo3/file_rename.php"]) {
- include_once($TYPO3_CONF_VARS[TYPO3_MODE]["XCLASS"]["typo3/file_rename.php"]);
-}
+ // Make page header:
+ $this->content = $this->doc->startPage($LANG->sL('LLL:EXT:lang/locallang_core.php:file_rename.php.pagetitle'));
+ $pageContent = $this->doc->header($LANG->sL('LLL:EXT:lang/locallang_core.php:file_rename.php.pagetitle'));
+ $pageContent .= $this->doc->spacer(5);
+ $pageContent .= $this->doc->divider(5);
+ $code = '<form action="tce_file.php" method="post" name="editform">';
+ // Making the formfields for renaming:
+ $code .= '
+ <div id="c-rename">
+ <input type="text" name="file[rename][0][data]" value="'.htmlspecialchars(basename($this->shortPath)).'"'.$GLOBALS['TBE_TEMPLATE']->formWidth(20).' />
+ <input type="hidden" name="file[rename][0][target]" value="'.htmlspecialchars($this->target).'" />
+ </div>
+ ';
+ // Making submit button:
+ $code.='
+ <div id="c-submit">
+ <input type="submit" value="'.$LANG->sL('LLL:EXT:lang/locallang_core.php:file_rename.php.submit',1).'" />
+ <input type="submit" value="'.$LANG->sL('LLL:EXT:lang/locallang_core.php:labels.cancel',1).'" onclick="backToList(); return false;" />
+ <input type="hidden" name="redirect" value="'.htmlspecialchars($this->returnUrl).'" />
+ </div>
+ ';
+ // Add the HTML as a section:
+ $pageContent .= $code;
+ $docHeaderButtons = array();
+ $docHeaderButtons['csh'] = t3lib_BEfunc::cshItem('xMOD_csh_corebe', 'file_rename', $GLOBALS['BACK_PATH']);
+ // 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;
+ }
+}
+
+
+if (defined('TYPO3_MODE') && $TYPO3_CONF_VARS[TYPO3_MODE]['XCLASS']['typo3/file_rename.php']) {
+ include_once($TYPO3_CONF_VARS[TYPO3_MODE]['XCLASS']['typo3/file_rename.php']);
+}
// Make instance:
-$SOBE = t3lib_div::makeInstance("SC_file_rename");
+$SOBE = t3lib_div::makeInstance('SC_file_rename');
$SOBE->init();
$SOBE->main();
$SOBE->printContent();
+
?>
\ No newline at end of file