2 /***************************************************************
5 * (c) 1999-2011 Kasper Skårhøj (kasperYYYY@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 * Folder navigation tree for the File main module
30 * @author Benjamin Mack <bmack@xnos.org>
33 * [CLASS/FUNCTION INDEX of SCRIPT]
37 * 71: class fileListTree extends t3lib_browseTree
38 * 81: function webPageTree()
39 * 92: function wrapIcon($icon,&$row)
40 * 130: function wrapStop($str,$row)
41 * 146: function wrapTitle($title,$row,$bank=0)
42 * 165: function printTree($treeItems = '')
43 * 271: function PMicon($row,$a,$c,$nextCount,$exp)
44 * 292: function PMiconATagWrap($icon, $cmd, $isExpand = TRUE)
45 * 309: function getBrowsableTree()
46 * 377: function getTree($uid, $depth=999, $depthData='',$blankLineCode='',$subCSSclass='')
50 * (This index is automatically created/updated by the extension "extdeveval")
54 * Extension class for the t3lib_filetree class, needed for drag and drop and ajax functionality
56 * @author Sebastian Kurfürst <sebastian@garbage-group.de>
57 * @author Benjamin Mack <bmack@xnos.org>
60 * @see class t3lib_browseTree
62 class filelistFolderTree
extends t3lib_folderTree
{
67 * Wrapping icon in browse tree
69 * @param string $theFolderIcon Icon IMG code
70 * @param t3lib_file_Folder $folderObject the folder object
71 * @return string folder icon
73 function wrapIcon($theFolderIcon, t3lib_file_Folder
$folderObject) {
74 $theFolderIcon = parent
::wrapIcon($theFolderIcon, $folderObject);
75 // Wrap icon in a drag/drop span.
76 return '<span class="dragIcon" id="dragIconID_' . $this->getJumpToParam($folderObject) . '">' . $theFolderIcon . '</span>';
80 * Wrapping $title in a-tags.
82 * @param string $title Title string
83 * @param t3lib_file_Folder $folderObject Folder to work on
84 * @param integer $bank Bank pointer (which mount point number)
88 function wrapTitle($title, t3lib_file_Folder
$folderObject, $bank = 0) {
89 $theFolderTitle = parent
::wrapTitle($title, $folderObject, $bank);
91 // Wrap title in a drag/drop span.
92 return '<span class="dragTitle" id="dragTitleID_' . $this->getJumpToParam($folderObject) . '">' . $theFolderTitle . '</span>';