*/ /** * Class for rendering of File>Filelist * * @author Kasper Skårhøj * @package TYPO3 * @subpackage core */ class fileList extends t3lib_recordList { var $iLimit = 40; // default Max items shown var $thumbs = 0; // Boolean. Thumbnails on records containing files (pictures) var $widthGif = ''; var $fixedL = 30; // Max length of strings var $script = 'file_list.php'; var $clickMenus=1; // If TRUE click menus are generated on files and folders var $sort = ''; // The field to sort by... var $sortRev = 1; // Reverse sorting flag var $firstElementNumber=0; var $clipBoard = 0; var $bigControlPanel = 0; // internal var $JScode = ''; var $HTMLcode = ''; var $totalbytes=0; var $dirs = Array(); var $files = Array(); var $path = ''; var $eCounter=0; // Counting the elements no matter what... var $dirCounter = 0; var $totalItems=''; var $CBnames=array(); /** * Initialization of class * * @param string The path to list * @param integer Pointer * @param boolean Sorting column * @param boolean Sorting direction * @param boolean Show clipboard flag * @return void */ function start($path, $pointer, $sort, $sortRev, $clipBoard=0, $bigControlPanel=0) { $this->counter=0; $this->totalbytes=0; $this->JScode=''; $this->HTMLcode=''; $this->path = $path; $this->sort=$sort; $this->sortRev=$sortRev; $this->firstElementNumber=$pointer; $this->clipBoard = $clipBoard; $this->bigControlPanel = $bigControlPanel; // setting the maximum length of the filenames to the user's settings or minimum 30 (= $this->fixedL) $this->fixedL = max($this->fixedL, $GLOBALS['BE_USER']->uc['titleLen']); if (!$GLOBALS['TYPO3_CONF_VARS']['GFX']['thumbnails']) { $this->thumbScript='gfx/notfound_thumb.gif'; } $GLOBALS['LANG']->includeLLFile('EXT:lang/locallang_common.xml'); } /** * Reading files and directories, counting elements and generating the list in ->HTMLcode * * @return void */ function generateList() { $this->dirs = $this->readDirectory($this->path,'dir,link'); $this->files = $this->readDirectory($this->path,'file'); $this->totalItems=count($this->dirs['sorting'])+count($this->files['sorting']); $this->HTMLcode.=$this->getTable($this->files, $this->dirs, 'fileext,tstamp,size,rw,_REF_'); } /** * Return the buttons used by the file list to include in the top header * * @return array */ function getButtonsAndOtherMarkers($path) { // Makes the code for the foldericon in the top $path = $GLOBALS['SOBE']->basicFF->is_directory($path); // Cleaning name... if ($path) { $otherMarkers = array( 'PAGE_ICON' => '', 'TITLE' => '', ); $buttons = array( 'level_up' => '', 'refresh' => '', 'title' => '', 'page_icon' => '', ); $theFile = $GLOBALS['SOBE']->basicFF->getTotalFileInfo($path); list($title,$icon,$path) = $this->dirData($theFile); // Start compiling the HTML $title = $GLOBALS['SOBE']->basicFF->blindPath($path); // if this is some subpage under the mount root.... if ($GLOBALS['SOBE']->basicFF->checkPathAgainstMounts($theFile['path'])) { // The icon with link $otherMarkers['PAGE_ICON'] = 'backPath,$icon,'width="18" height="16"').' title="'.htmlspecialchars($theFile['file']).'" alt="'.htmlspecialchars($theFile['file']).'" />'; if ($this->clickMenus) $otherMarkers['PAGE_ICON'] = $GLOBALS['SOBE']->doc->wrapClickMenuOnIcon($otherMarkers['PAGE_ICON'],$path); $buttons['level_up'] .= $this->linkWrapDir(t3lib_iconWorks::getSpriteIcon('actions-view-go-up', array('title' => $GLOBALS['LANG']->sL('LLL:EXT:lang/locallang_core.xml:labels.upOneLevel', 1))), $theFile['path']); $otherMarkers['TITLE'] .= t3lib_div::removeXSS(t3lib_div::fixed_lgd_cs($title,-($this->fixedL+20))); // No HTML specialchars here - HTML like is allowed // this is the root page } else { $otherMarkers['PAGE_ICON'] = t3lib_iconWorks::getSpriteIcon('apps-filetree-root'); if ($this->clickMenus) $otherMarkers['PAGE_ICON'] = $GLOBALS['SOBE']->doc->wrapClickMenuOnIcon($otherMarkers['PAGE_ICON'],$path); $otherMarkers['TITLE'] .= htmlspecialchars(t3lib_div::fixed_lgd_cs($title,-($this->fixedL+20))); } } $buttons['refresh'] = ''. t3lib_iconWorks::getSpriteIcon('actions-system-refresh') . ''; return array($buttons, $otherMarkers); } /** * Wrapping input string in a link with clipboard command. * * @param string String to be linked - must be htmlspecialchar'ed / prepared before. * @param string table - NOT USED * @param string "cmd" value * @param string Warning for JS confirm message * @return string Linked string */ function linkClipboardHeaderIcon($string,$table,$cmd,$warning='') { $onClickEvent = 'document.dblistForm.cmd.value=\''.$cmd.'\';document.dblistForm.submit();'; if ($warning) $onClickEvent = 'if (confirm('.$GLOBALS['LANG']->JScharCode($warning).')){'.$onClickEvent.'}'; return ''.$string.''; } /** * Returns a table with directories and files listed. * * @param array Array of files from path * @param array Array of directories from path * @param string List of rows to display horizontallyh * @return string HTML-table */ function getTable($files,$dirs,$rowlist) { // Adds the code of files/dirs $out=''; $titleCol = 'file'; $upLevelDir = dirname(substr($files['files'][0]['path'], 0, -1)) . '/'; $levelUp = $GLOBALS['SOBE']->basicFF->checkPathAgainstMounts($upLevelDir) ? $this->linkWrapDir(t3lib_iconWorks::getSpriteIcon('actions-view-go-up', array('title' => $GLOBALS['LANG']->sL('LLL:EXT:lang/locallang_core.php:labels.upOneLevel', TRUE))), $upLevelDir) : ''; // Cleaning rowlist for duplicates and place the $titleCol as the first column always! $rowlist = t3lib_div::rmFromList($titleCol,$rowlist); $rowlist = t3lib_div::uniqueList($rowlist); $rowlist = $rowlist ? $titleCol.','.$rowlist : $titleCol; if ($this->bigControlPanel || $this->clipBoard) { $rowlist = str_replace('file,', 'file,_CLIPBOARD_,', $rowlist); } $this->fieldArray = explode(',',$rowlist); // Directories are added $iOut = ''; $iOut.= $this->formatDirList($dirs); if (count($dirs['sorting'])) { // half line is drawn $theData = Array(); $theData[$titleCol] = ''; } // Files are added $iOut.= $this->formatFileList($files,$titleCol); // Header line is drawn $theData = Array(); foreach ($this->fieldArray as $v) { if ($v == '_CLIPBOARD_' && $this->clipBoard) { $cells=array(); $table='_FILE'; $elFromTable = $this->clipObj->elFromTable($table); if (count($elFromTable)) { $cells[]='' . t3lib_iconWorks::getSpriteIcon('actions-document-paste-after') . ''; } if ($this->clipObj->current!='normal' && $iOut) { $cells[]=$this->linkClipboardHeaderIcon(t3lib_iconWorks::getSpriteIcon('actions-edit-copy', array('title' => $GLOBALS['LANG']->getLL('clip_selectMarked', 1))), $table,'setCB'); $cells[]=$this->linkClipboardHeaderIcon(t3lib_iconWorks::getSpriteIcon('actions-edit-delete', array('title' => $GLOBALS['LANG']->getLL('clip_deleteMarked'))), $table,'delete',$GLOBALS['LANG']->getLL('clip_deleteMarkedWarning')); $onClick = 'checkOffCB(\'' . implode(',', $this->CBnames) . '\', this); return false;'; $cells[] = '' . t3lib_iconWorks::getSpriteIcon('actions-document-select'). ''; } $theData[$v] = implode('',$cells); } else { // Normal row: $theT = $this->linkWrapSort($GLOBALS['LANG']->getLL('c_'.$v,1), $this->path,$v); $theData[$v] = $theT; } } $out .= '' . $this->addelement(1, $levelUp, $theData, ' class="t3-row-header"', '') . ''; $out .= '' . $iOut . ''; // half line is drawn // finish return ' '.$out.'
'; } /** * Gets the number of files and total size of a folder * * @return string **/ function getFolderInfo() { if($this->counter == 1) { $fileLabel = $GLOBALS['LANG']->getLL('file', TRUE); } else { $fileLabel = $GLOBALS['LANG']->getLL('files', TRUE); } return $this->counter . ' ' . $fileLabel . ', ' . t3lib_div::formatSize($this->totalbytes, $GLOBALS['LANG']->getLL('byteSizeUnits', TRUE)); } /** * This returns tablerows for the directories in the array $items['sorting']. * * @param array Directory items * @return string HTML table rows. */ function formatDirList($items) { $out=''; // Folders: if (count($items['sorting'])) { foreach ($items['sorting'] as $key => $value) { list($flag,$code) = $this->fwd_rwd_nav(); $out.=$code; if ($flag) { // Initialization $theFile = $items['files'][$key]; $this->counter++; list($title,$icon,$path) = $this->dirData($theFile); // The icon with link $theIcon = t3lib_iconWorks::getSpriteIconForFile( ($theFile['type'] == 'dir' ? 'folder' : $theFile['fileext']), array('title' => htmlspecialchars($theFile['file']))); if ($this->clickMenus) $theIcon = $GLOBALS['SOBE']->doc->wrapClickMenuOnIcon($theIcon,$path); // Preparing and getting the data-array $theData = Array(); foreach ($this->fieldArray as $field) { switch($field) { case 'size': $theData[$field] = t3lib_div::formatSize($theFile[$field], $GLOBALS['LANG']->getLL('byteSizeUnits', TRUE)); break; case 'rw': $theData[$field] = (($theFile['readable']) ? '' : '' . $GLOBALS['LANG']->getLL('read', TRUE) . '') . (($theFile['writable']) ? '' : '' . $GLOBALS['LANG']->getLL('write', TRUE) . ''); break; case 'fileext': $theData[$field]=strtoupper($theFile['fileext']); break; case 'tstamp': $theData[$field]=Date($GLOBALS['TYPO3_CONF_VARS']['SYS']['ddmmyy'], $theFile['tstamp']); break; case 'file': $theData[$field]= $this->linkWrapDir($title,$path); break; case '_CLIPBOARD_': $temp = ''; if ($this->bigControlPanel) { $temp .= $this->makeEdit($theFile); } $temp .= $this->makeClip($theFile); $theData[$field] = $temp; break; case '_REF_': $theData[$field]=$this->makeRef($theFile); break; default: $theData[$field]=t3lib_div::fixed_lgd_cs($theFile[$field],$this->fixedL); break; } } $out .= $this->addelement(1, $theIcon, $theData, ' class="file_list_normal"'); } $this->eCounter++; $this->dirCounter = $this->eCounter; } } return $out; } /** * Wraps the directory-titles * * @param string String to be wrapped in links * @param string ID (path) * @return string HTML */ function linkWrapDir($code,$path) { $href = $this->script.'?id='.rawurlencode($path); $onclick = ' onclick="'.htmlspecialchars('top.content.nav_frame.hilight_row("file","folder'.t3lib_div::md5int($path).'_"+top.fsMod.currentBank)').'"'; // Sometimes $code contains plain HTML tags. In such a case the string should not be modified! if(!strcmp($code,strip_tags($code))) { return ''.t3lib_div::fixed_lgd_cs($code,$this->fixedL).''; } else { return ''.$code.''; } } /** * Wraps filenames in links which opens them in a window IF they are in web-path. * * @param string String to be wrapped in links * @param string ID (path) * @return string HTML */ function linkWrapFile($code,$path) { if (t3lib_div::isFirstPartOfStr($path, PATH_site)) { $href = t3lib_div::getIndpEnv('TYPO3_SITE_URL') . substr($path, strlen(PATH_site)); $aOnClick = "return top.openUrlInWindow('".$href."','WebFile');"; $code = ''.t3lib_div::fixed_lgd_cs($code,$this->fixedL).''; } return $code; } /** * Returns list URL; This is the URL of the current script with id and imagemode parameters, thats all. * * @return string URL */ function listURL() { return $this->script.'?id='.rawurlencode($this->path).'&imagemode='.$this->thumbs; } /** * Returns some data specific for the directories... * * @param array File information array * @return array (title, icon, path) */ function dirData($theFile) { $path = $theFile['path'] . $theFile['file'] . '/'; $webpath = t3lib_BEfunc::getPathType_web_nonweb($path); $title = htmlspecialchars($theFile['file']); $icon = 'gfx/i/_icon_' . $webpath . 'folders.gif'; if ($title == '_temp_') { $icon = 'gfx/i/sysf.gif'; $title = '' . $GLOBALS['LANG']->getLL('temp', TRUE) . ''; } if ($title == '_recycler_') { $icon = 'gfx/i/recycler.gif'; $title = '' . $GLOBALS['LANG']->getLL('recycler', TRUE) . ''; } $icon = $theFile['writable'] ? 'gfx/i/_icon_' . $webpath . 'folders_ro.gif' : $icon; return array($title, $icon, $path); } /** * This returns tablerows for the files in the array $items['sorting']. * * @param array File items * @return string HTML table rows. */ function formatFileList($items) { $out=''; // Files: if (count($items['sorting'])) { foreach ($items['sorting'] as $key => $value) { list($flag,$code) = $this->fwd_rwd_nav(); $out.=$code; if ($flag) { // Initialization $theFile = $items['files'][$key]; $this->counter++; $this->totalbytes+=$theFile['size']; $ext = $items['files'][$key][fileext]; $icon = t3lib_BEfunc::getFileIcon($ext); // The icon with link $theIcon = t3lib_iconWorks::getSpriteIconForFile($theFile['fileext'], array('title' => htmlspecialchars($theFile['file']))); if ($this->clickMenus) $theIcon = $GLOBALS['SOBE']->doc->wrapClickMenuOnIcon($theIcon,$theFile['path'].$theFile['file']); // Preparing and getting the data-array $theData = Array(); foreach ($this->fieldArray as $field) { switch($field) { case 'size': $theData[$field] = t3lib_div::formatSize($theFile[$field], $GLOBALS['LANG']->getLL('byteSizeUnits', TRUE)); break; case 'rw': $theData[$field] = (($theFile['readable']) ? '' : '' . $GLOBALS['LANG']->getLL('read', TRUE) . '') . (($theFile['writable']) ? '' : '' . $GLOBALS['LANG']->getLL('write', TRUE) . ''); break; case 'fileext': $theData[$field]=strtoupper($theFile[$field]); break; case 'tstamp': $theData[$field]=Date($GLOBALS['TYPO3_CONF_VARS']['SYS']['ddmmyy'], $theFile[$field]); break; case '_CLIPBOARD_': $temp = ''; if ($this->bigControlPanel) { $temp .= $this->makeEdit($theFile); } $temp .= $this->makeClip($theFile); $theData[$field] = $temp; break; case '_REF_': $theData[$field]=$this->makeRef($theFile); break; case 'file': $theData[$field] = $this->linkWrapFile($theFile[$field],$theFile['path'].$theFile['file']); // Thumbsnails? if ($this->thumbs && $this->isImage($theFile['fileext'])) { $thumbData = array(); $theFile_R = rawurlencode($theFile['path'].$theFile['file']); $titleCol = $this->fieldArray[0]; $theFile_abs = $theFile['path'].$theFile['file']; $check = basename($theFile_abs).':'.filemtime($theFile_abs).':'.$GLOBALS['TYPO3_CONF_VARS']['SYS']['encryptionKey']; $params = '&file='.$theFile_R; $params.= '&md5sum='.t3lib_div::shortMD5($check); $href = $this->backPath.$this->thumbScript.'?&dummy='.$GLOBALS['EXEC_TIME'].$params; $theData[$field] .= '
'.htmlspecialchars(trim($theFile['file'])).''; } break; default: $theData[$field]=t3lib_div::fixed_lgd_cs($theFile[$field],$this->fixedL); break; } } $out .= $this->addelement(1, $theIcon, $theData, ' class="file_list_normal"'); } $this->eCounter++; } } return $out; } /** * Returns TRUE if $ext is an image-extension according to $GLOBALS['TYPO3_CONF_VARS']['GFX']['imagefile_ext'] * * @param string file extension * @return boolean */ function isImage($ext) { return t3lib_div::inList($GLOBALS['TYPO3_CONF_VARS']['GFX']['imagefile_ext'],strtolower($ext)); } /** * Wraps the directory-titles ($code) in a link to file_list.php (id=$path) and sorting commands... * * @param string String to be wrapped * @param string ID (path) * @param string Sorting column * @return string HTML */ function linkWrapSort($code,$path,$col) { if ($this->sort==$col && !$this->sortRev) { // reverse sorting $params='&SET[sort]='.$col.'&SET[reverse]=1'; } else { $params='&SET[sort]='.$col.'&SET[reverse]=0'; } $href = $GLOBALS['BACK_PATH'] . t3lib_extMgm::extRelPath('filelist') . 'mod1/' . $this->script . '?id=' . rawurlencode($path) . $params; return ''.$code.''; } /** * Returns an array with file/dir items + an array with the sorted items * * @param string Path (absolute) to read * @param string $type is the technical type; file,dir,link. empty is all kinds of stuff. * @param string $extList: List of fileextensions to select. If empty, all are selected. * @return array Array('files'=>array(), 'sorting'=>array()); */ function readDirectory($path,$type,$extList='') { $items = Array('files'=>array(), 'sorting'=>array()); $path = $GLOBALS['SOBE']->basicFF->is_directory($path); // Cleaning name... if($path && $GLOBALS['SOBE']->basicFF->checkPathAgainstMounts($path.'/')) { $d = @dir($path); $tempArray=Array(); if (is_object($d)) { while(FALSE !== ($entry=$d->read())) { if ($entry!='.' && $entry!='..') { $wholePath = $path.'/'.$entry; // Because of odd PHP-error where
-tag is sometimes placed after a filename!! if (@file_exists($wholePath) && (!$type || t3lib_div::inList($type,filetype($wholePath)))) { if ($extList) { $fI = t3lib_div::split_fileref($entry); if (t3lib_div::inList($extList,$fI['fileext'])) { $tempArray[] = $wholePath; } } else { $tempArray[] = $wholePath; } } } } $d->close(); } // Get fileinfo foreach ($tempArray as $val) { $temp = $GLOBALS['SOBE']->basicFF->getTotalFileInfo($val); $items['files'][] = $temp; if ($this->sort) { $items['sorting'][] = strtoupper($temp[$this->sort]); } else { $items['sorting'][] = ''; } } // Sort if required if ($this->sort) { if (!$this->sortRev) { asort($items['sorting']); } else { arsort($items['sorting']); } } } return $items; } /** * Creates the clipboard control pad * * @param array Array with information about the file/directory for which to make the clipboard panel for the listing. * @return string HTML-table */ function makeClip($theData) { $cells=array(); $fullIdent = $theData['path'].$theData['file']; $md5=t3lib_div::shortmd5($fullIdent); // For normal clipboard, add copy/cut buttons: if ($this->clipObj->current=='normal') { $isSel = $this->clipObj->isSelected('_FILE',$md5); $cells[]=''. t3lib_iconWorks::getSpriteIcon('actions-edit-copy'.($isSel=='copy'?'-release':''),array('title'=>$GLOBALS['LANG']->sL('LLL:EXT:lang/locallang_core.xml:cm.copy',1))). ''; $cells[]=''. t3lib_iconWorks::getSpriteIcon('actions-edit-cut'.($isSel=='cut'?'-release':''),array('title'=>$GLOBALS['LANG']->sL('LLL:EXT:lang/locallang_core.xml:cm.cut',1))). ''; } else { // For numeric pads, add select checkboxes: $n='_FILE|'.$md5; $this->CBnames[]=$n; $checked = ($this->clipObj->isSelected('_FILE',$md5)?' checked="checked"':''); $cells[]=''. ''; } // Display PASTE button, if directory: $elFromTable = $this->clipObj->elFromTable('_FILE'); if (@is_dir($fullIdent) && count($elFromTable)) { $cells[]=''. t3lib_iconWorks::getSpriteIcon('actions-document-paste-into') . ''; } // Compile items into a DIV-element: return '
'.implode(' ',$cells).'
'; } /** * Creates the edit control section * * @param array Array with information about the file/directory for which to make the edit control section for the listing. * @return string HTML-table */ function makeEdit($theData) { $cells = array(); $fullIdent = $theData['path'].$theData['file']; $canEdit = t3lib_div::inList($GLOBALS['TYPO3_CONF_VARS']['SYS']['textfile_ext'], $theData['realFileext']); // prepare space icon $iconWidth = $GLOBALS['TBE_STYLES']['skinImgAutoCfg']['iconSizeWidth'] ? $GLOBALS['TBE_STYLES']['skinImgAutoCfg']['iconSizeWidth'] : 12; $iconHeight = $GLOBALS['TBE_STYLES']['skinImgAutoCfg']['iconSizeHeight'] ? $GLOBALS['TBE_STYLES']['skinImgAutoCfg']['iconSizeHeight'] : 12; $spaceIcon = ''; //edit if ($theData['type'] == 'dir' || !$canEdit) { $cells['edit'] = $spaceIcon; } else { $editOnClick = 'top.content.list_frame.location.href=top.TS.PATH_typo3+\'file_edit.php?target=' . rawurlencode($fullIdent) . '&returnUrl=\'+top.rawurlencode(top.content.list_frame.document.location.pathname+top.content.list_frame.document.location.search);return false;'; $cells['edit'] = '' . t3lib_iconWorks::getSpriteIcon('actions-page-open') . ''; } //rename $renameOnClick = 'top.content.list_frame.location.href=top.TS.PATH_typo3+\'file_rename.php?target=' . rawurlencode($fullIdent) . '&returnUrl=\'+top.rawurlencode(top.content.list_frame.document.location.pathname+top.content.list_frame.document.location.search);return false;'; $cells['rename'] = '' . t3lib_iconWorks::getSpriteIcon('actions-edit-rename') . ''; //info $infoOnClick = 'top.launchView(\'' . $fullIdent . '\', \'\');return false;'; $cells['info'] = '' . t3lib_iconWorks::getSpriteIcon('status-dialog-information') . ''; // Hook for manipulating edit icons. if(is_array($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['fileList']['editIconsHook'])) { foreach($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['fileList']['editIconsHook'] as $classData) { $hookObject = t3lib_div::getUserObj($classData); if(!($hookObject instanceof fileList_editIconHook)) { throw new UnexpectedValueException('$hookObject must implement interface fileList_editIconHook', 1235225797); } $hookObject->manipulateEditIcons($cells, $this); } } // Compile items into a DIV-element: return '
' . implode(' ', $cells).'
'; } /** * Make reference count * * @param array Array with information about the file/directory for which to make the clipboard panel for the listing. * @return string HTML */ function makeRef($theData) { // First, fit path to match what is stored in the refindex: $fullIdent = $theData['path'].$theData['file']; if (t3lib_div::isFirstPartOfStr($fullIdent,PATH_site)) { $fullIdent = substr($fullIdent,strlen(PATH_site)); } // Look up the path: $rows = $GLOBALS['TYPO3_DB']->exec_SELECTgetRows( '*', 'sys_refindex', 'ref_table='.$GLOBALS['TYPO3_DB']->fullQuoteStr('_FILE','sys_refindex'). ' AND ref_string='.$GLOBALS['TYPO3_DB']->fullQuoteStr($fullIdent,'sys_refindex'). ' AND deleted=0' ); // Compile information for title tag: $infoData=array(); if (is_array($rows)) { foreach($rows as $row) { $infoData[]=$row['tablename'].':'.$row['recuid'].':'.$row['field']; } } return count($infoData) ? ''.count($infoData).'' : ''; } } if (defined('TYPO3_MODE') && isset($GLOBALS['TYPO3_CONF_VARS'][TYPO3_MODE]['XCLASS']['typo3/class.file_list.inc'])) { include_once($GLOBALS['TYPO3_CONF_VARS'][TYPO3_MODE]['XCLASS']['typo3/class.file_list.inc']); } ?>