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');
172 // Validating the input "id" (the path, directory!) and checking it against the mounts of the user.
173 $this->id
= $this->basicFF
->is_directory($this->id
);
174 $access = $this->id
&& $this->basicFF
->checkPathAgainstMounts($this->id
.'/');
176 // There there was access to this file path, continue, make the list
179 // Create filelisting object
180 $this->filelist
= t3lib_div
::makeInstance('fileList');
181 $this->filelist
->backPath
= $BACK_PATH;
182 $this->filelist
->thumbs
= $this->MOD_SETTINGS
['displayThumbs']?
1:$BE_USER->uc
['thumbnailsByDefault'];
184 // Create clipboard object and initialize that
185 $this->filelist
->clipObj
= t3lib_div
::makeInstance('t3lib_clipboard');
186 $this->filelist
->clipObj
->fileMode
=1;
187 $this->filelist
->clipObj
->initializeClipboard();
189 $CB = t3lib_div
::_GET('CB');
190 if ($this->cmd
=='setCB') $CB['el'] = $this->filelist
->clipObj
->cleanUpCBC(array_merge(t3lib_div
::_POST('CBH'),t3lib_div
::_POST('CBC')),'_FILE');
191 if (!$this->MOD_SETTINGS
['clipBoard']) $CB['setP']='normal';
192 $this->filelist
->clipObj
->setCmd($CB);
193 $this->filelist
->clipObj
->cleanCurrent();
194 $this->filelist
->clipObj
->endClipboard(); // Saves
196 // If the "cmd" was to delete files from the list (clipboard thing), do that:
197 if ($this->cmd
=='delete') {
198 $items = $this->filelist
->clipObj
->cleanUpCBC(t3lib_div
::_POST('CBC'),'_FILE',1);
200 // Make command array:
203 while(list(,$v)=each($items)) {
204 $FILE['delete'][]=array('data'=>$v);
207 // Init file processing object for deleting and pass the cmd array.
208 $fileProcessor = t3lib_div
::makeInstance('t3lib_extFileFunctions');
209 $fileProcessor->init($FILEMOUNTS, $TYPO3_CONF_VARS['BE']['fileExtensions']);
210 $fileProcessor->init_actionPerms($BE_USER->user
['fileoper_perms']);
211 $fileProcessor->dontCheckForUnique
= $this->overwriteExistingFiles ?
1 : 0;
212 $fileProcessor->start($FILE);
213 $fileProcessor->processData();
215 $fileProcessor->printLogErrorMessages();
219 if (!isset($this->MOD_SETTINGS
['sort'])) {
220 // Set default sorting
221 $this->MOD_SETTINGS
['sort'] = 'file';
222 $this->MOD_SETTINGS
['reverse'] = 0;
225 // Start up filelisting object, include settings.
226 $this->pointer
= t3lib_div
::intInRange($this->pointer
,0,100000);
227 $this->filelist
->start($this->id
,$this->pointer
,$this->MOD_SETTINGS
['sort'],$this->MOD_SETTINGS
['reverse'],$this->MOD_SETTINGS
['clipBoard']);
230 $this->filelist
->generateList();
233 $this->filelist
->writeBottom();
235 // Set top JavaScript:
236 $this->doc
->JScode
=$this->doc
->wrapScriptTags('
238 if (top.fsMod) top.fsMod.recentIds["file"] = unescape("'.rawurlencode($this->id
).'");
239 function jumpToUrl(URL) { //
240 window.location.href = URL;
243 '.$this->filelist
->CBfunctions() // ... and add clipboard JavaScript functions
246 // This will return content necessary for the context sensitive clickmenus to work: bodytag events, JavaScript functions and DIV-layers.
247 $this->doc
->getContextMenuCode();
249 // Setting up the buttons and markers for docheader
250 list($buttons, $otherMarkers) = $this->filelist
->getButtonsAndOtherMarkers($this->id
);
252 // add the folder info to the marker array
253 $otherMarkers['FOLDER_INFO'] = $this->filelist
->getFolderInfo();
255 $docHeaderButtons = array_merge($this->getButtons(), $buttons);
257 // Build the <body> for the module
258 $this->content
= $this->doc
->startPage($LANG->getLL('files'));
262 $pageContent.= '<form action="'.htmlspecialchars($this->filelist
->listURL()).'" method="post" name="dblistForm">';
263 $pageContent.= $this->filelist
->HTMLcode
;
264 $pageContent.= '<input type="hidden" name="cmd" /></form>';
267 if ($this->filelist
->HTMLcode
) { // Making listing options:
272 Listing options for clipboard and thumbnails
274 <div id="typo3-listOptions">
277 // Add "display thumbnails" checkbox:
278 $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 />';
280 // Add clipboard button
281 $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>';
289 if ($this->MOD_SETTINGS
['clipBoard']) {
290 $pageContent.=$this->filelist
->clipObj
->printClipboard();
291 $pageContent.= t3lib_BEfunc
::cshItem('xMOD_csh_corebe', 'filelist_clipboard', $GLOBALS['BACK_PATH']);
295 $markerArray = array(
296 'CSH' => $docHeaderButtons['csh'],
297 'FUNC_MENU' => t3lib_BEfunc
::getFuncMenu($this->id
, 'SET[function]', $this->MOD_SETTINGS
['function'], $this->MOD_MENU
['function']),
298 'CONTENT' => $pageContent
301 $this->content
.= $this->doc
->moduleBody(array(), $docHeaderButtons, array_merge($markerArray, $otherMarkers));
302 $this->content
.= $this->doc
->endPage();
303 $this->content
= $this->doc
->insertStylesAndJS($this->content
);
306 // Create output - no access (no warning though)
308 $this->content
.= $this->doc
->startPage($LANG->getLL('files'));
309 $this->content
.= $this->doc
->endPage();
310 $this->content
= $this->doc
->insertStylesAndJS($this->content
);
317 * Outputting the accumulated content to screen
321 function printContent() {
326 * Create the panel of buttons for submitting the form or otherwise perform operations.
328 * @return array all available buttons as an assoc. array
330 function getButtons() {
331 global $TCA, $LANG, $BACK_PATH, $BE_USER;
341 if ($BE_USER->mayMakeShortcut()) {
342 $buttons['shortcut'] = $this->doc
->makeShortcutIcon('pointer,id,target,table',implode(',',array_keys($this->MOD_MENU
)),$this->MCONF
['name']);
345 // FileList Module CSH:
346 $buttons['csh'] = t3lib_BEfunc
::cshItem('xMOD_csh_corebe', 'filelist_module', $GLOBALS['BACK_PATH'], '', TRUE);
349 $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="" />';
350 $buttons['upload'] = '<a href="'.$BACK_PATH.'file_upload.php?target='.rawurlencode($this->id
).'&returnUrl='.rawurlencode($this->filelist
->listURL()).'">'.$theIcon.'</a>';
352 $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="" />';
353 $buttons['new'] = '<a href="'.$BACK_PATH.'file_newfolder.php?target='.rawurlencode($this->id
).'&returnUrl='.rawurlencode($this->filelist
->listURL()).'">'.$theIcon.'</a>';
360 // Include extension?
361 if (defined('TYPO3_MODE') && $TYPO3_CONF_VARS[TYPO3_MODE
]['XCLASS']['typo3/file_list.php']) {
362 include_once($TYPO3_CONF_VARS[TYPO3_MODE
]['XCLASS']['typo3/file_list.php']);
377 $SOBE = t3lib_div
::makeInstance('SC_file_list');
380 $SOBE->printContent();
383 if ($TYPO3_CONF_VARS['BE']['compressionLevel']) {
384 new gzip_encode($TYPO3_CONF_VARS['BE']['compressionLevel']);