<?php
/***************************************************************
-* Copyright notice
-*
-* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com)
-* All rights reserved
-*
-* 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
-* 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
-* GNU General Public License for more details.
-*
-* This copyright notice MUST APPEAR in all copies of the script!
-***************************************************************/
+ * Copyright notice
+ *
+ * (c) 1999-2011 Kasper Skårhøj (kasperYYYY@typo3.com)
+ * All rights reserved
+ *
+ * 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
+ * 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
+ * GNU General Public License for more details.
+ *
+ * This copyright notice MUST APPEAR in all copies of the script!
+ ***************************************************************/
/**
* Folder tree in the File main module.
*
- * @author Kasper Skaarhoj <kasper@typo3.com>
- * @package TYPO3
- * @subpackage core
+ * Revised for TYPO3 3.6 2/2003 by Kasper Skårhøj
+ * XHTML compliant
*
- * Revised for TYPO3 3.6 2/2003 by Kasper Skaarhoj
- * XHTML compliant (almost)
+ * @author Kasper Skårhøj <kasperYYYY@typo3.com>
*/
-
-
-$BACK_PATH='';
-require ('init.php');
-require ('template.php');
-require_once (PATH_t3lib.'class.t3lib_foldertree.php');
-
-
-
-
-// ***************************
-// Script Classes
-// ***************************
-
-
-# require_once(t3lib_extMgm::extPath('cc_debug').'class.tx_ccdebug.php');
-/**
- * Main script class
+$BACK_PATH = '';
+require_once 'init.php';
+/*
+ * @deprecated since 6.0, the classname SC_alt_file_navframe and this file is obsolete
+ * and will be removed with 6.2. The class was renamed and is now located at:
+ * typo3/sysext/backend/Classes/Controller/FileSystemNavigationFrameController.php
*/
-class SC_alt_file_navframe {
- var $content;
- var $foldertree;
- var $doc;
-
- /**
- * Initialiation
- */
- function init() {
- global $BE_USER,$LANG,$BACK_PATH,$TCA,$HTTP_GET_VARS,$HTTP_POST_VARS,$CLIENT,$TYPO3_CONF_VARS;
-
- $this->foldertree = t3lib_div::makeInstance('t3lib_folderTree');
- $this->foldertree->ext_IconMode = $BE_USER->getTSConfigVal('options.folderTree.disableIconLinkToContextmenu');
- $this->foldertree->thisScript = 'alt_file_navframe.php';
-
- $currentSubScript = t3lib_div::GPvar('currentSubScript');
-
- $this->doHighlight = !$BE_USER->getTSConfigVal('options.pageTree.disableTitleHighlight');
-
- // Create template object:
- $this->doc = t3lib_div::makeInstance('template');
-
- // Hmmm, setting "xhtml_trans" for the page will unfortunately break the Context Sensitive menu in Mozilla! But apart from that - and duplicate ID's for same page in different mounts - the document checks out well as XHTML
-# $this->doc->docType='xhtml_trans';
-
- // Setting backPath
- $this->doc->backPath = $BACK_PATH;
-
- // Setting JavaScript for menu.
- $this->doc->JScode=$this->doc->wrapScriptTags(
- ($currentSubScript?'top.currentSubScript=unescape("'.rawurlencode($currentSubScript).'");':'').'
- function jumpTo(id,linkObj,intId) {
- var theUrl = top.TS.PATH_typo3+top.currentSubScript+"?id="+id;
- if (top.condensedMode) {
- top.content.document.location=theUrl;
- } else {
- parent.list_frame.document.location=theUrl;
- }
-
-// intId is md5 of the path
-// top.fsMod.recentIds["file"] is the path itself
-// therefore de-highlighting does not work
-// intId is generated in class.t3lib_foldertree.php function getId() and used in wrapTitle() and wrapIcon()
-
- '.($this->doHighlight?'hilight_row("folder"+top.fsMod.recentIds["file"],"folder"+intId);':'').'
- '.(!$CLIENT['FORMSTYLE'] ? '' : 'if (linkObj) {linkObj.blur();}').'
- return false;
- }
- function hilight_row(old_rowid,new_rowid) {
- if(document.all) {
- if(document.all.item(old_rowid)) {
- document.all.item(old_rowid).style.backgroundColor="";
- }
- if(document.all.item(new_rowid)) {
- document.all.item(new_rowid).style.backgroundColor="'.
- t3lib_div::modifyHTMLColorAll($this->doc->bgColor,-20).
- '";
- }
- } else {
- if(document.getElementsByName) {
- old_row_obj = document.getElementsByName(old_rowid)[0];
- new_row_obj = document.getElementsByName(new_rowid)[0];
- bgc = document.createAttribute("bgcolor");
- bgc.value="'.
- t3lib_div::modifyHTMLColorAll($this->doc->bgColor,-20).
- '";
- if(old_row_obj) {
- old_row_obj.removeAttribute("bgcolor");
- }
- if(new_row_obj) {
- new_row_obj.setAttributeNode(bgc);
- }
- }
- }
- }
-
- '.(t3lib_div::GPvar('cMR')?"jumpTo(top.fsMod.recentIds['file'],'');":"").';
- ');
-
- // Click menu code is added:
- $CMparts=$this->doc->getContextMenuCode();
- $this->doc->bodyTagAdditions = $CMparts[1];
- $this->doc->JScode.=$CMparts[0];
- $this->doc->postCode.= $CMparts[2];
- }
-
- /**
- * Main
- */
- function main() {
- global $BE_USER,$LANG,$BACK_PATH,$TCA,$HTTP_GET_VARS,$HTTP_POST_VARS,$CLIENT,$TYPO3_CONF_VARS;
-
- // Produce browse-tree:
- $tree=$this->foldertree->getBrowsableTree();
- /*
- if ($CLIENT['BROWSER']=='konqu') {
- // Where <nobr> does not work, this will secure non-breaks in lines:
- $tree = '<table border=0 cellspacing=0 cellpadding=0><tr><td nowrap>'.$tree.'</td></tr></table>';
- }
- */
-
- $this->content="";
- $this->content.=$this->doc->startPage('Folder tree');
- $this->content.=$tree;
- $this->content.='<br />
- <a href="'.htmlspecialchars(t3lib_div::getIndpEnv('REQUEST_URI')).'">'.
- '<img src="gfx/refresh_n.gif" width="14" height="14" hspace="4" border="0" align="top" title="'.$LANG->sL('LLL:EXT:lang/locallang_core.php:labels.refresh',1).'" alt="" />'.
- $LANG->sL('LLL:EXT:lang/locallang_core.php:labels.refresh',1).'</a>
- <br /><br />';
-
- // Adding highlight - JavaScript
- if ($this->doHighlight) $this->content .=$this->doc->wrapScriptTags('
- if(top.fsMod.recentIds["file"] != "") {
- rowid="folder"+top.fsMod.recentIds["file"];
- hilight_row("",rowid);
- }
- ');
- }
-
- /**
- * Output tree.
- */
- function printContent() {
- $this->content.= $this->doc->endPage();
- echo $this->content;
- }
-}
-
-// Include extension?
-if (defined('TYPO3_MODE') && $TYPO3_CONF_VARS[TYPO3_MODE]['XCLASS']['typo3/alt_file_navframe.php']) {
- include_once($TYPO3_CONF_VARS[TYPO3_MODE]['XCLASS']['typo3/alt_file_navframe.php']);
+require_once \TYPO3\CMS\Core\Utility\ExtensionManagementUtility::extPath('backend') . 'Classes/Controller/FileSystemNavigationFrameController.php';
+// Make instance if it is not an AJAX call
+if (!(TYPO3_REQUESTTYPE & TYPO3_REQUESTTYPE_AJAX)) {
+ $SOBE = \TYPO3\CMS\Core\Utility\GeneralUtility::makeInstance('TYPO3\\CMS\\Backend\\Controller\\FileSystemNavigationFrameController');
+ $SOBE->init();
+ $SOBE->initPage();
+ $SOBE->main();
+ $SOBE->printContent();
}
-
-
-
-
-
-
-
-
-
-
-
-
-// Make instance:
-$SOBE = t3lib_div::makeInstance('SC_alt_file_navframe');
-$SOBE->init();
-$SOBE->main();
-$SOBE->printContent();
-?>
+?>
\ No newline at end of file