2 /***************************************************************
5 * (c) 1999-2009 Kasper Skaarhoj (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 * Generate a folder tree
31 * Revised for TYPO3 3.6 November/2003 by Kasper Skaarhoj
33 * @author Kasper Skaarhoj <kasperYYYY@typo3.com>
34 * @coauthor René Fritz <r.fritz@colorcube.de>
37 * [CLASS/FUNCTION INDEX of SCRIPT]
41 * 82: class t3lib_folderTree extends t3lib_treeView
42 * 89: function t3lib_folderTree()
43 * 107: function wrapIcon($icon,$row)
44 * 130: function wrapTitle($title,$row,$bank=0)
45 * 145: function getId($v)
46 * 155: function getJumpToParam($v)
47 * 167: function getTitleStr($row,$titleLen=30)
48 * 177: function getBrowsableTree()
49 * 240: function getFolderTree($files_path, $depth=999, $depthData='')
50 * 320: function getCount($files_path)
51 * 336: function initializePositionSaving()
54 * (This index is automatically created/updated by the extension "extdeveval")
73 * Extension class for the t3lib_treeView class, specially made for browsing folders in the File module
75 * @author Kasper Skaarhoj <kasperYYYY@typo3.com>
76 * @coauthor René Fritz <r.fritz@colorcube.de>
79 * @see class t3lib_treeView
81 class t3lib_folderTree
extends t3lib_treeView
{
84 * Constructor function of the class
88 function t3lib_folderTree() {
91 $this->MOUNTS
= $GLOBALS['FILEMOUNTS'];
93 $this->treeName
='folder';
94 $this->titleAttrib
=''; //don't apply any title
95 $this->domIdPrefix
= 'folder';
99 * Wrapping the folder icon
101 * @param string The image tag for the icon
102 * @param array The row for the current element
103 * @return string The processed icon input value.
106 function wrapIcon($icon,$row) {
107 // Add title attribute to input icon tag
108 $theFolderIcon = $this->addTagAttributes($icon,($this->titleAttrib ?
$this->titleAttrib
.'="'.$this->getTitleAttrib($row).'"' : ''));
110 // Wrap icon in click-menu link.
111 if (!$this->ext_IconMode
) {
112 $theFolderIcon = $GLOBALS['TBE_TEMPLATE']->wrapClickMenuOnIcon($theFolderIcon,$row['path'],'',0);
113 } elseif (!strcmp($this->ext_IconMode
,'titlelink')) {
114 $aOnClick = 'return jumpTo(\''.$this->getJumpToParam($row).'\',this,\''.$this->domIdPrefix
.$this->getId($row).'\','.$this->bank
.');';
115 $theFolderIcon='<a href="#" onclick="'.htmlspecialchars($aOnClick).'">'.$theFolderIcon.'</a>';
117 return $theFolderIcon;
121 * Wrapping $title in a-tags.
123 * @param string Title string
124 * @param string Item record
125 * @param integer Bank pointer (which mount point number)
129 function wrapTitle($title,$row,$bank=0) {
130 $aOnClick = 'return jumpTo(\''.$this->getJumpToParam($row).'\',this,\''.$this->domIdPrefix
.$this->getId($row).'\','.$bank.');';
132 if ($GLOBALS['TYPO3_CONF_VARS']['BE']['useOnContextMenuHandler']) {
133 $CSM = ' oncontextmenu="'.htmlspecialchars($GLOBALS['TBE_TEMPLATE']->wrapClickMenuOnIcon('',$row['path'],'',0,'','',TRUE
)).'"';
135 return '<a href="#" title="'.htmlspecialchars($row['title']).'" onclick="'.htmlspecialchars($aOnClick).'"'.$CSM.'>'.$title.'</a>';
139 * Returns the id from the record - for folders, this is an md5 hash.
141 * @param array Record array
142 * @return integer The "uid" field value.
145 return t3lib_div
::md5Int($v['path']);
149 * Returns jump-url parameter value.
151 * @param array The record array.
152 * @return string The jump-url parameter.
154 function getJumpToParam($v) {
155 return rawurlencode($v['path']);
159 * Returns the title for the input record. If blank, a "no title" labele (localized) will be returned.
160 * '_title' is used for setting an alternative title for folders.
162 * @param array The input row array (where the key "_title" is used for the title)
163 * @param integer Title length (30)
164 * @return string The title.
166 function getTitleStr($row,$titleLen=30) {
167 return $row['_title'] ?
$row['_title'] : parent
::getTitleStr($row,$titleLen);
171 * Will create and return the HTML code for a browsable tree of folders.
172 * Is based on the mounts found in the internal array ->MOUNTS (set in the constructor)
174 * @return string HTML code for the browsable tree
176 function getBrowsableTree() {
178 // Get stored tree structure AND updating it if needed according to incoming PM GET var.
179 $this->initializePositionSaving();
182 $titleLen=intval($this->BE_USER
->uc
['titleLen']);
186 foreach($this->MOUNTS
as $key => $val) {
187 $md5_uid = md5($val['path']);
188 $specUID=hexdec(substr($md5_uid,0,6));
189 $this->specUIDmap
[$specUID]=$val['path'];
192 $this->bank
=$val['nkey'];
193 $isOpen = $this->stored
[$val['nkey']][$specUID] ||
$this->expandFirst
;
197 $cmd=$this->bank
.'_'.($isOpen?
'0_':'1_').$specUID.'_'.$this->treeName
;
198 $icon='<img'.t3lib_iconWorks
::skinImg($this->backPath
,'gfx/ol/'.($isOpen?
'minus':'plus').'only.gif','width="18" height="16"').' alt="" />';
199 $firstHtml= $this->PM_ATagWrap($icon,$cmd);
201 switch ($val['type']) {
203 $icon = 'gfx/i/_icon_ftp_user.gif';
206 $icon = 'gfx/i/_icon_ftp_group.gif';
209 $icon = 'gfx/i/_icon_ftp_readonly.gif';
212 $icon = 'gfx/i/_icon_ftp.gif';
216 // Preparing rootRec for the mount
217 $firstHtml.=$this->wrapIcon('<img'.t3lib_iconWorks
::skinImg($this->backPath
,$icon,'width="18" height="16"').' alt="" />',$val);
219 $row['path']=$val['path'];
220 $row['uid']=$specUID;
221 $row['title']=$val['name'];
223 // Add the root of the mount to ->tree
224 $this->tree
[]=array('HTML'=>$firstHtml,'row'=>$row,'bank'=>$this->bank
);
226 // If the mount is expanded, go down:
229 $depthD='<img'.t3lib_iconWorks
::skinImg($this->backPath
,'gfx/ol/blank.gif','width="18" height="16"').' alt="" />';
230 $this->getFolderTree($val['path'], 999, $depthD, $val['type']);
234 $treeArr=array_merge($treeArr,$this->tree
);
236 return $this->printTree($treeArr);
240 * Fetches the data for the tree
242 * @param string Abs file path
243 * @param integer Max depth (recursivity limit)
244 * @param string HTML-code prefix for recursive calls.
245 * @return integer The count of items on the level
246 * @see getBrowsableTree()
248 function getFolderTree($files_path, $depth=999, $depthData='', $type='') {
250 // This generates the directory tree
251 $dirs = t3lib_div
::get_dirs($files_path);
254 if (is_array($dirs)) {
255 $depth=intval($depth);
261 foreach($dirs as $key => $val) {
263 $this->tree
[]=array(); // Reserve space.
265 $treeKey = key($this->tree
); // Get the key for this space
266 $LN = ($a==$c)?
'blank':'line';
268 $val = preg_replace('/^\.\//','',$val);
270 $path = $files_path.$val.'/';
271 $webpath=t3lib_BEfunc
::getPathType_web_nonweb($path);
273 $md5_uid = md5($path);
274 $specUID=hexdec(substr($md5_uid,0,6));
275 $this->specUIDmap
[$specUID]=$path;
278 $row['uid']=$specUID;
279 $row['title']=$title;
281 if ($depth>1 && $this->expandNext($specUID)) {
282 $nextCount=$this->getFolderTree(
285 $this->makeHTML ?
$depthData.'<img'.t3lib_iconWorks
::skinImg($this->backPath
,'gfx/ol/'.$LN.'.gif','width="18" height="16"').' alt="" />' : '',
288 $exp=1; // Set "did expand" flag
290 $nextCount=$this->getCount($path);
291 $exp=0; // Clear "did expand" flag
294 // Set HTML-icons, if any:
295 if ($this->makeHTML
) {
296 $HTML=$depthData.$this->PMicon($row,$a,$c,$nextCount,$exp);
298 $icon = 'gfx/i/_icon_' .$webpath . 'folders' . ($type == 'readonly' ?
'_ro' : '') . '.gif';
299 if ($val=='_temp_') {
300 $icon = 'gfx/i/sysf.gif';
301 $row['title'] = $GLOBALS['LANG']->sl('LLL:EXT:lang/locallang_mod_file_list.xml:temp', true
);
302 $row['_title'] = '<strong>' . $GLOBALS['LANG']->sl('LLL:EXT:lang/locallang_mod_file_list.xml:temp', true
) . '</strong>';
304 if ($val=='_recycler_') {
305 $icon = 'gfx/i/recycler.gif';
306 $row['title'] = $GLOBALS['LANG']->sl('LLL:EXT:lang/locallang_mod_file_list.xml:recycler', true
);
307 $row['_title'] = '<strong>' . $GLOBALS['LANG']->sl('LLL:EXT:lang/locallang_mod_file_list.xml:recycler', true
) . '</strong>';
309 $HTML.=$this->wrapIcon('<img'.t3lib_iconWorks
::skinImg($this->backPath
,$icon,'width="18" height="16"').' alt="" />',$row);
312 // Finally, add the row/HTML content to the ->tree array in the reserved key.
313 $this->tree
[$treeKey] = Array(
324 * Counts the number of directories in a file path.
326 * @param string File path.
329 function getCount($files_path) {
330 // This generates the directory tree
331 $dirs = t3lib_div
::get_dirs($files_path);
333 if (is_array($dirs)) {
340 * Get stored tree structure AND updating it if needed according to incoming PM GET var.
345 function initializePositionSaving() {
346 // Get stored tree structure:
347 $this->stored
=unserialize($this->BE_USER
->uc
['browseTrees'][$this->treeName
]);
349 // Mapping md5-hash to shorter number:
351 foreach($this->MOUNTS
as $key => $val) {
352 $nkey = hexdec(substr($key,0,4));
353 $hashMap[$nkey]=$key;
354 $this->MOUNTS
[$key]['nkey']=$nkey;
358 // (If an plus/minus icon has been clicked, the PM GET var is sent and we must update the stored positions in the tree):
359 $PM = explode('_',t3lib_div
::_GP('PM')); // 0: mount key, 1: set/clear boolean, 2: item ID (cannot contain "_"), 3: treeName
360 if (count($PM)==4 && $PM[3]==$this->treeName
) {
361 if (isset($this->MOUNTS
[$hashMap[$PM[0]]])) {
363 $this->stored
[$PM[0]][$PM[2]]=1;
364 $this->savePosition($this->treeName
);
366 unset($this->stored
[$PM[0]][$PM[2]]);
367 $this->savePosition($this->treeName
);
374 if (defined('TYPO3_MODE') && $TYPO3_CONF_VARS[TYPO3_MODE
]['XCLASS']['t3lib/class.t3lib_foldertree.php']) {
375 include_once($TYPO3_CONF_VARS[TYPO3_MODE
]['XCLASS']['t3lib/class.t3lib_foldertree.php']);