2 /***************************************************************
5 * (c) 1999-2008 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 * Web>File: File listing
31 * Revised for TYPO3 3.6 2/2003 by Kasper Skaarhoj
33 * @author Kasper Skaarhoj <kasperYYYY@typo3.com>
36 * [CLASS/FUNCTION INDEX of SCRIPT]
40 * 77: class SC_file_list
41 * 103: function init()
42 * 130: function menuConfig()
43 * 151: function main()
44 * 325: function printContent()
47 * (This index is automatically created/updated by the extension "extdeveval")
53 require ('mod/file/list/conf.php');
55 require ('template.php');
56 $LANG->includeLLFile('EXT:lang/locallang_mod_file_list.xml');
57 require_once (PATH_t3lib
.'class.t3lib_basicfilefunc.php');
58 require_once (PATH_t3lib
.'class.t3lib_extfilefunc.php');
59 require_once (PATH_t3lib
.'class.t3lib_recordlist.php');
60 require_once (PATH_t3lib
.'class.t3lib_clipboard.php');
61 require_once (PATH_t3lib
.'class.t3lib_parsehtml.php');
62 require_once ('class.file_list.inc');
63 $BE_USER->modAccess($MCONF,1);
72 * Script Class for creating the list of files in the File > Filelist module
74 * @author Kasper Skaarhoj <kasperYYYY@typo3.com>
79 var $MCONF=array(); // Module configuration
80 var $MOD_MENU=array();
81 var $MOD_SETTINGS=array();
85 var $content; // Accumulated HTML output
88 * File processing object
90 * @var t3lib_basicFileFunctions
95 * Document template object
101 // Internal, static: GPvars:
102 var $id; // "id" -> the path to list.
103 var $pointer; // Pointer to listing
104 var $table; // "Table"
105 var $imagemode; // Thumbnail mode.
107 var $overwriteExistingFiles;
111 * Initialize variables, file object
112 * Incoming GET vars include id, pointer, table, imagemode
117 global $TYPO3_CONF_VARS,$FILEMOUNTS;
120 $this->id
= t3lib_div
::_GP('id');
121 $this->pointer
= t3lib_div
::_GP('pointer');
122 $this->table
= t3lib_div
::_GP('table');
123 $this->imagemode
= t3lib_div
::_GP('imagemode');
124 $this->cmd
= t3lib_div
::_GP('cmd');
125 $this->overwriteExistingFiles
= t3lib_div
::_GP('overwriteExistingFiles');
127 // Setting module name:
128 $this->MCONF
= $GLOBALS['MCONF'];
130 // File operation object:
131 $this->basicFF
= t3lib_div
::makeInstance('t3lib_basicFileFunctions');
132 $this->basicFF
->init($FILEMOUNTS,$TYPO3_CONF_VARS['BE']['fileExtensions']);
134 // Configure the "menu" - which is used internally to save the values of sorting, displayThumbs etc.
139 * Setting the menu/session variables
143 function menuConfig() {
145 // If array, then it's a selector box menu
146 // If empty string it's just a variable, that'll be saved.
147 // Values NOT in this array will not be saved in the settings-array for the module.
148 $this->MOD_MENU
= array(
151 'displayThumbs' => '',
156 $this->MOD_SETTINGS
= t3lib_BEfunc
::getModuleData($this->MOD_MENU
, t3lib_div
::_GP('SET'), $this->MCONF
['name']);
160 * Main function, creating the listing
165 global $BE_USER,$LANG,$BACK_PATH,$TYPO3_CONF_VARS,$FILEMOUNTS;
167 // Initialize the template object
168 $this->doc
= t3lib_div
::makeInstance('template');
169 $this->doc
->backPath
= $BACK_PATH;
170 $this->doc
->setModuleTemplate('templates/file_list.html');
171 $this->doc
->docType
= 'xhtml_trans';
173 // Validating the input "id" (the path, directory!) and checking it against the mounts of the user.
174 $this->id
= $this->basicFF
->is_directory($this->id
);
175 $access = $this->id
&& $this->basicFF
->checkPathAgainstMounts($this->id
.'/');
177 // There there was access to this file path, continue, make the list
180 // Create filelisting object
181 $this->filelist
= t3lib_div
::makeInstance('fileList');
182 $this->filelist
->backPath
= $BACK_PATH;
183 $this->filelist
->thumbs
= $this->MOD_SETTINGS
['displayThumbs']?
1:$BE_USER->uc
['thumbnailsByDefault'];
185 // Create clipboard object and initialize that
186 $this->filelist
->clipObj
= t3lib_div
::makeInstance('t3lib_clipboard');
187 $this->filelist
->clipObj
->fileMode
=1;
188 $this->filelist
->clipObj
->initializeClipboard();
190 $CB = t3lib_div
::_GET('CB');
191 if ($this->cmd
=='setCB') $CB['el'] = $this->filelist
->clipObj
->cleanUpCBC(array_merge(t3lib_div
::_POST('CBH'),t3lib_div
::_POST('CBC')),'_FILE');
192 if (!$this->MOD_SETTINGS
['clipBoard']) $CB['setP']='normal';
193 $this->filelist
->clipObj
->setCmd($CB);
194 $this->filelist
->clipObj
->cleanCurrent();
195 $this->filelist
->clipObj
->endClipboard(); // Saves
197 // If the "cmd" was to delete files from the list (clipboard thing), do that:
198 if ($this->cmd
=='delete') {
199 $items = $this->filelist
->clipObj
->cleanUpCBC(t3lib_div
::_POST('CBC'),'_FILE',1);
201 // Make command array:
204 while(list(,$v)=each($items)) {
205 $FILE['delete'][]=array('data'=>$v);
208 // Init file processing object for deleting and pass the cmd array.
209 $fileProcessor = t3lib_div
::makeInstance('t3lib_extFileFunctions');
210 $fileProcessor->init($FILEMOUNTS, $TYPO3_CONF_VARS['BE']['fileExtensions']);
211 $fileProcessor->init_actionPerms($BE_USER->user
['fileoper_perms']);
212 $fileProcessor->dontCheckForUnique
= $this->overwriteExistingFiles ?
1 : 0;
213 $fileProcessor->start($FILE);
214 $fileProcessor->processData();
216 $fileProcessor->printLogErrorMessages();
220 if (!isset($this->MOD_SETTINGS
['sort'])) {
221 // Set default sorting
222 $this->MOD_SETTINGS
['sort'] = 'file';
223 $this->MOD_SETTINGS
['reverse'] = 0;
226 // Start up filelisting object, include settings.
227 $this->pointer
= t3lib_div
::intInRange($this->pointer
,0,100000);
228 $this->filelist
->start($this->id
,$this->pointer
,$this->MOD_SETTINGS
['sort'],$this->MOD_SETTINGS
['reverse'],$this->MOD_SETTINGS
['clipBoard']);
231 $this->filelist
->generateList();
234 $this->filelist
->writeBottom();
236 // Set top JavaScript:
237 $this->doc
->JScode
=$this->doc
->wrapScriptTags('
239 if (top.fsMod) top.fsMod.recentIds["file"] = unescape("'.rawurlencode($this->id
).'");
240 function jumpToUrl(URL) { //
241 window.location.href = URL;
244 '.$this->filelist
->CBfunctions() // ... and add clipboard JavaScript functions
247 // This will return content necessary for the context sensitive clickmenus to work: bodytag events, JavaScript functions and DIV-layers.
248 $this->doc
->getContextMenuCode();
250 // Setting up the buttons and markers for docheader
251 list($buttons, $otherMarkers) = $this->filelist
->getButtonsAndOtherMarkers($this->id
);
253 // add the folder info to the marker array
254 $otherMarkers['FOLDER_INFO'] = $this->filelist
->getFolderInfo();
256 $docHeaderButtons = array_merge($this->getButtons(), $buttons);
258 // Build the <body> for the module
259 $this->content
= $this->doc
->startPage('Template Tools');
263 $pageContent.=$this->doc
->startPage($LANG->getLL('files'));
264 $pageContent.= '<form action="'.htmlspecialchars($this->filelist
->listURL()).'" method="post" name="dblistForm">';
265 $pageContent.= $this->filelist
->HTMLcode
;
266 $pageContent.= '<input type="hidden" name="cmd" /></form>';
269 if ($this->filelist
->HTMLcode
) { // Making listing options:
274 Listing options for clipboard and thumbnails
276 <div id="typo3-listOptions">
279 // Add "display thumbnails" checkbox:
280 $pageContent.=t3lib_BEfunc
::getFuncCheck($this->id
,'SET[displayThumbs]',$this->MOD_SETTINGS
['displayThumbs'],'file_list.php','','id="checkDisplayThumbs"').' <label for="checkDisplayThumbs">'.$LANG->getLL('displayThumbs',1).'</label><br />';
282 // Add clipboard button
283 $pageContent.=t3lib_BEfunc
::getFuncCheck($this->id
,'SET[clipBoard]',$this->MOD_SETTINGS
['clipBoard'],'file_list.php','','id="checkClipBoard"').' <label for="checkClipBoard">'.$LANG->getLL('clipBoard',1).'</label>';
291 if ($this->MOD_SETTINGS
['clipBoard']) {
292 $pageContent.=$this->filelist
->clipObj
->printClipboard();
293 $pageContent.= t3lib_BEfunc
::cshItem('xMOD_csh_corebe', 'filelist_clipboard', $GLOBALS['BACK_PATH']);
297 $markerArray = array(
298 'CSH' => $docHeaderButtons['csh'],
299 'FUNC_MENU' => t3lib_BEfunc
::getFuncMenu($this->id
, 'SET[function]', $this->MOD_SETTINGS
['function'], $this->MOD_MENU
['function']),
300 'CONTENT' => $pageContent
303 $this->content
.= $this->doc
->moduleBody(array(), $docHeaderButtons, array_merge($markerArray, $otherMarkers));
304 $this->content
.= $this->doc
->endPage();
305 $this->content
= $this->doc
->insertStylesAndJS($this->content
);
308 // Create output - no access (no warning though)
310 $this->content
.= $this->doc
->startPage($LANG->getLL('files'));
311 $this->content
.= $this->doc
->endPage();
312 $this->content
= $this->doc
->insertStylesAndJS($this->content
);
319 * Outputting the accumulated content to screen
323 function printContent() {
328 * Create the panel of buttons for submitting the form or otherwise perform operations.
330 * @return array all available buttons as an assoc. array
332 function getButtons() {
333 global $TCA, $LANG, $BACK_PATH, $BE_USER;
343 if ($BE_USER->mayMakeShortcut()) {
344 $buttons['shortcut'] = $this->doc
->makeShortcutIcon('pointer,id,target,table',implode(',',array_keys($this->MOD_MENU
)),$this->MCONF
['name']);
347 // FileList Module CSH:
348 $buttons['csh'] = t3lib_BEfunc
::cshItem('xMOD_csh_corebe', 'filelist_module', $GLOBALS['BACK_PATH']);
351 $theIcon = '<img'.t3lib_iconWorks
::skinImg($this->backPath
,'gfx/upload.gif','width="18" height="16"').' title="'.$GLOBALS['LANG']->makeEntities($GLOBALS['LANG']->sL('LLL:EXT:lang/locallang_core.php:cm.upload',1)).'" alt="" />';
352 $buttons['upload'] = '<a href="'.$BACK_PATH.'file_upload.php?target='.htmlspecialchars($this->id
).'&returnUrl='.htmlspecialchars($this->filelist
->listURL()).'">'.$theIcon.'</a>';
354 $theIcon = '<img'.t3lib_iconWorks
::skinImg($this->backPath
,'gfx/new_file.gif','width="18" height="16"').' title="'.$GLOBALS['LANG']->makeEntities($GLOBALS['LANG']->sL('LLL:EXT:lang/locallang_core.php:cm.new',1)).'" alt="" />';
355 $buttons['new'] = '<a href="'.$BACK_PATH.'file_newfolder.php?target='.htmlspecialchars($this->id
).'&returnUrl='.htmlspecialchars($this->filelist
->listURL()).'">'.$theIcon.'</a>';
362 // Include extension?
363 if (defined('TYPO3_MODE') && $TYPO3_CONF_VARS[TYPO3_MODE
]['XCLASS']['typo3/file_list.php']) {
364 include_once($TYPO3_CONF_VARS[TYPO3_MODE
]['XCLASS']['typo3/file_list.php']);
379 $SOBE = t3lib_div
::makeInstance('SC_file_list');
382 $SOBE->printContent();
385 if ($TYPO3_CONF_VARS['BE']['compressionLevel']) {
386 new gzip_encode($TYPO3_CONF_VARS['BE']['compressionLevel']);