File: Editing documents * * Revised for TYPO3 3.6 2/2003 by Kasper Skårhøj * XHTML compliant (except textarea field) * * @author Kasper Skårhøj */ $GLOBALS['BACK_PATH'] = ''; require('init.php'); require('template.php'); /** * Script Class for rendering the file editing screen * * @author Kasper Skårhøj * @package TYPO3 * @subpackage core */ class SC_file_edit { // Module content accumulated. var $content; var $title; /** * Document template object * * @var template */ var $doc; // Internal, static: GPvar // Original input target var $origTarget; // The original target, but validated. var $target; // Return URL of list module. var $returnUrl; /** * the file that is being edited on * * @var t3lib_file_AbstractFile */ protected $fileObject; /** * Initialize script class * * @return void */ function init() { // Setting target, which must be a file reference to a file within the mounts. $this->target = $this->origTarget = $fileIdentifier = t3lib_div::_GP('target'); $this->returnUrl = t3lib_div::sanitizeLocalUrl(t3lib_div::_GP('returnUrl')); // create the file object if ($fileIdentifier) { $this->fileObject = t3lib_file_Factory::getInstance()->retrieveFileOrFolderObject($fileIdentifier); } // Cleaning and checking target directory if (!$this->fileObject) { $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, 1294586841); } // Setting the title and the icon $icon = t3lib_iconWorks::getSpriteIcon('apps-filetree-root'); $this->title = $icon . htmlspecialchars($this->fileObject->getStorage()->getName()) . ': ' . htmlspecialchars($this->fileObject->getIdentifier()); // *************************** // Setting template object // *************************** $this->doc = t3lib_div::makeInstance('template'); $this->doc->setModuleTemplate('templates/file_edit.html'); $this->doc->backPath = $GLOBALS['BACK_PATH']; $this->doc->JScode = $this->doc->wrapScriptTags(' function backToList() { // top.goToModule("file_list"); } '); $this->doc->form='
'; } /** * Main function, redering the actual content of the editing page * * @return void */ function main() { //TODO: change locallang*.php to locallang*.xml $docHeaderButtons = $this->getButtons(); $this->content = $this->doc->startPage($GLOBALS['LANG']->sL('LLL:EXT:lang/locallang_core.php:file_edit.php.pagetitle')); // Hook before compiling the output if (isset($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['typo3/file_edit.php']['preOutputProcessingHook'])) { $preOutputProcessingHook =& $GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['typo3/file_edit.php']['preOutputProcessingHook']; if (is_array($preOutputProcessingHook)) { $hookParameters = array( 'content' => &$this->content, 'target' => &$this->target, ); foreach ($preOutputProcessingHook as $hookFunction) { t3lib_div::callUserFunction($hookFunction, $hookParameters, $this); } } } $pageContent = $this->doc->header($GLOBALS['LANG']->sL('LLL:EXT:lang/locallang_core.php:file_edit.php.pagetitle') . ' ' . htmlspecialchars($this->fileObject->getName())); $pageContent .= $this->doc->spacer(2); $code = ''; $extList = $GLOBALS['TYPO3_CONF_VARS']['SYS']['textfile_ext']; if ($extList && t3lib_div::inList($extList, $this->fileObject->getExtension())) { // Read file content to edit: $fileContent = $this->fileObject->getContents(); // Making the formfields $hValue = 'file_edit.php?target='.rawurlencode($this->origTarget).'&returnUrl='.rawurlencode($this->returnUrl); // Edit textarea: $code .= '

'; // Make shortcut: if ($GLOBALS['BE_USER']->mayMakeShortcut()) { $this->MCONF['name'] = 'xMOD_file_edit.php'; $docHeaderButtons['shortcut'] = $this->doc->makeShortcutIcon('target', '', $this->MCONF['name'], 1); } else { $docHeaderButtons['shortcut'] = ''; } } else { $code .= sprintf($GLOBALS['LANG']->sL('LLL:EXT:lang/locallang_core.php:file_edit.php.coundNot'), $extList); } // Ending of section and outputting editing form: $pageContent .= $this->doc->sectionEnd(); $pageContent .= $code; // Hook after compiling the output if (isset($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['typo3/file_edit.php']['postOutputProcessingHook'])) { $postOutputProcessingHook =& $GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['typo3/file_edit.php']['postOutputProcessingHook']; if (is_array($postOutputProcessingHook)) { $hookParameters = array( 'pageContent' => &$pageContent, 'target' => &$this->target, ); foreach ($postOutputProcessingHook as $hookFunction) { t3lib_div::callUserFunction($hookFunction, $hookParameters, $this); } } } // 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']), 'BUTTONS' => $docHeaderButtons, 'PATH' => $this->title, 'CONTENT' => $pageContent, ); $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; } /** * Builds the buttons for the docheader and returns them as an array * * @return array **/ function getButtons() { $buttons = array(); // CSH button $buttons['csh'] = t3lib_BEfunc::cshItem('xMOD_csh_corebe', 'file_edit', $GLOBALS['BACK_PATH'], '', TRUE); // Save button $theIcon = t3lib_iconWorks::getSpriteIcon('actions-document-save'); $buttons['SAVE'] = '' . $theIcon . ''; // Save and Close button $theIcon = t3lib_iconWorks::getSpriteIcon('actions-document-save-close'); $buttons['SAVE_CLOSE'] = '' . $theIcon . ''; // Cancel button $theIcon = t3lib_iconWorks::getSpriteIcon('actions-document-close'); $buttons['CANCEL'] = '' . $theIcon . ''; return $buttons; } } // Make instance: $SOBE = t3lib_div::makeInstance('SC_file_edit'); $SOBE->init(); $SOBE->main(); $SOBE->printContent(); ?>