‪TYPO3CMS  ‪main
TYPO3\CMS\Filelist\FileList Class Reference

Public Member Functions

 __construct (ServerRequestInterface $request)
 
 setResourceDownloadMatcher (?Matcher $matcher)
 
 setResourceDisplayMatcher (?Matcher $matcher)
 
 setResourceSelectableMatcher (?Matcher $matcher)
 
 setResourceSelectedMatcher (?Matcher $matcher)
 
 start (Folder $folderObject, int $currentPage, string $sort, bool $sortRev, Mode $mode=Mode::MANAGE)
 
 setMode (Mode $mode)
 
 setColumnsToRender (array $additionalFields=[])
 
 render (?FileSearchDemand $searchDemand, ViewInterface $view)
 
string addElement (array $data, array $attributes=[], bool $isTableHeader=false)
 
 getFolderInfo ()
 
 createModuleUri (array $params=[])
 

Public Attributes

Mode $mode = Mode::MANAGE
 
ViewMode $viewMode = ViewMode::TILES
 
int $itemsPerPage = 40
 
int $currentPage = 1
 
int $totalbytes = 0
 
int $totalItems = 0
 
string $sort = ''
 
bool $sortRev = true
 
bool $thumbs = false
 
int $maxTitleLength = 30
 
array $fieldArray = []
 
array $addElement_tdCssClass
 
Clipboard $clipObj
 
 $translationRecords
 
 $translations = []
 
foreach($translationRecords as $record) return $translations
 

Protected Member Functions

 renderTiles (ResourceCollectionPaginator $paginator, array $resourceViews, ViewInterface $view)
 
 renderList (ResourceCollectionPaginator $paginator, array $resourceViews, ViewInterface $view)
 
 renderListTableHeader ()
 
 renderListTableFieldHeader (string $field)
 
 renderListTableBody (array $resourceViews)
 
 renderListTableForwardBackwardNavigation (ResourceCollectionPaginator $paginator, NavigationDirection $direction)
 
array< int, getTranslationsForMetaData( $metaDataRecord) { $languageField=$GLOBALS[ 'TCA'][ 'sys_file_metadata'][ 'ctrl'][ 'languageField'] ?? '';$languageParentField=$GLOBALS[ 'TCA'][ 'sys_file_metadata'][ 'ctrl'][ 'transOrigPointerField'] ?? '';$queryBuilder=GeneralUtility::makeInstance(ConnectionPool::class) -> getQueryBuilderForTable ('sys_file_metadata')
 
 renderIcon (ResourceView $resourceView)
 
 renderName (ResourceView $resourceView)
 
 renderThumbnail (ResourceView $resourceView)
 
 renderType (ResourceView $resourceView)
 
 renderCreationTime (ResourceView $resourceView)
 
 renderModificationTime (ResourceView $resourceView)
 
 renderSize (ResourceView $resourceView)
 
 renderPermission (ResourceView $resourceView)
 
 renderField (ResourceView $resourceView, string $field)
 
 renderSelector (ResourceView $resourceView)
 
 renderPath (ResourceView $resourceView)
 
 renderReferenceCount (ResourceView $resourceView)
 
 renderControl (ResourceView $resourceView)
 
 renderControlManage (ResourceView $resourceView)
 
 renderControlBrowse (ResourceView $resourceView)
 
 createControlSelect (ResourceView $resourceView)
 
 createControlEditContent (ResourceView $resourceView)
 
 createControlEditMetaData (ResourceView $resourceView)
 
 createControlView (ResourceView $resourceView)
 
 createControlReplace (ResourceView $resourceView)
 
 createControlRename (ResourceView $resourceView)
 
 createControlDownload (ResourceView $resourceView)
 
 createControlUpload (ResourceView $resourceView)
 
 createControlInfo (ResourceView $resourceView)
 
 createControlDelete (ResourceView $resourceView)
 
 createControlTranslation (ResourceView $resourceView)
 
 createControlCopy (ResourceView $resourceView)
 
 createControlCut (ResourceView $resourceView)
 
 createControlPaste (ResourceView $resourceView)
 
 createControlUpdateOnlineMedia (ResourceView $resourceView)
 
 isEditMetadataAllowed (File $file)
 
string renderCheckboxActions ()
 
 getConcreteTableName (string $fieldName)
 
 getPaginationLinkForDirection (ResourceCollectionPaginator $paginator, NavigationDirection $direction)
 
 getPaginationLinkForPage (ResourceCollectionPaginator $paginator, ?int $targetPage=null)
 
 createEditDataUriForResource (ResourceInterface $resource)
 
 createEditContentUriForResource (ResourceInterface $resource)
 
 createModuleUriForResource (ResourceInterface $resource)
 
 createReplaceUriForResource (ResourceInterface $resource)
 
ResourceInterface[] sortResources (array $resources, string $sortField)
 
 getSortingValue (ResourceInterface $resource, string $sortField)
 
 getSortingValueForFile (File $resource, string $sortField)
 
 getSortingValueForFolder (Folder $resource, string $sortField)
 
 getFieldLabel (string $field)
 
 getFileReferenceCount (File $file)
 
 getUserPermissions ()
 
 getLanguageService ()
 
 getBackendUser ()
 

Protected Attributes

Folder $folderObject
 
Matcher $resourceDownloadMatcher = null
 
Matcher $resourceDisplayMatcher = null
 
Matcher $resourceSelectableMatcher = null
 
Matcher $resourceSelectedMatcher = null
 
FileSearchDemand $searchDemand = null
 
EventDispatcherInterface $eventDispatcher
 
ServerRequestInterface $request
 
IconFactory $iconFactory
 
ResourceFactory $resourceFactory
 
UriBuilder $uriBuilder
 
TranslationConfigurationProvider $translateTools
 
OnlineMediaHelperRegistry $onlineMediaHelperRegistry
 

Detailed Description

Class for rendering of File>Filelist (basically used in FileListController)

See also
‪\TYPO3\CMS\Filelist\Controller\FileListController

this is a concrete TYPO3 controller implementation and solely used for EXT:filelist and not part of TYPO3's Core API.

Definition at line 73 of file FileList.php.

Constructor & Destructor Documentation

◆ __construct()

Member Function Documentation

◆ addElement()

string TYPO3\CMS\Filelist\FileList::addElement ( array  $data,
array  $attributes = [],
bool  $isTableHeader = false 
)

Returns a table-row with the content from the fields in the input data array. OBS: $this->fieldArray MUST be set! (represents the list of fields to display)

Parameters
array$data‪Is the data array, record with the fields. Notice: These fields are (currently) NOT htmlspecialchar'ed before being wrapped in

-tags

Parameters
array$attributes‪Attributes for the table row. Values will be htmlspecialchar'ed!
bool$isTableHeader‪Whether the element to be added is a table header
Returns
‪string HTML content for the table row

Definition at line 380 of file FileList.php.

References TYPO3\CMS\Filelist\Type\fieldArray.

Referenced by TYPO3\CMS\Filelist\FileList\renderListTableBody(), and TYPO3\CMS\Filelist\FileList\renderListTableHeader().

◆ createControlCopy()

◆ createControlCut()

◆ createControlDelete()

◆ createControlDownload()

TYPO3\CMS\Filelist\FileList::createControlDownload ( ResourceView  $resourceView)
protected

◆ createControlEditContent()

TYPO3\CMS\Filelist\FileList::createControlEditContent ( ResourceView  $resourceView)
protected

◆ createControlEditMetaData()

TYPO3\CMS\Filelist\FileList::createControlEditMetaData ( ResourceView  $resourceView)
protected

◆ createControlInfo()

TYPO3\CMS\Filelist\FileList::createControlInfo ( ResourceView  $resourceView)
protected

◆ createControlPaste()

◆ createControlRename()

TYPO3\CMS\Filelist\FileList::createControlRename ( ResourceView  $resourceView)
protected

◆ createControlReplace()

TYPO3\CMS\Filelist\FileList::createControlReplace ( ResourceView  $resourceView)
protected

◆ createControlSelect()

TYPO3\CMS\Filelist\FileList::createControlSelect ( ResourceView  $resourceView)
protected

◆ createControlTranslation()

TYPO3\CMS\Filelist\FileList::createControlTranslation ( ResourceView  $resourceView)
protected

Creates the file metadata translation dropdown. Each item links to the corresponding metadata translation, while depending on the current state, either a new translation can be created or an existing translation can be edited.

Definition at line 1162 of file FileList.php.

References $GLOBALS, TYPO3\CMS\Webhooks\Message\$url, TYPO3\CMS\Filelist\FileList\createModuleUri(), TYPO3\CMS\Filelist\FileList\getBackendUser(), and TYPO3\CMS\Filelist\FileList\getLanguageService().

Referenced by TYPO3\CMS\Filelist\FileList\renderControlManage().

◆ createControlUpdateOnlineMedia()

TYPO3\CMS\Filelist\FileList::createControlUpdateOnlineMedia ( ResourceView  $resourceView)
protected

◆ createControlUpload()

◆ createControlView()

TYPO3\CMS\Filelist\FileList::createControlView ( ResourceView  $resourceView)
protected

◆ createEditContentUriForResource()

TYPO3\CMS\Filelist\FileList::createEditContentUriForResource ( ResourceInterface  $resource)
protected

◆ createEditDataUriForResource()

TYPO3\CMS\Filelist\FileList::createEditDataUriForResource ( ResourceInterface  $resource)
protected

◆ createModuleUri()

◆ createModuleUriForResource()

TYPO3\CMS\Filelist\FileList::createModuleUriForResource ( ResourceInterface  $resource)
protected

◆ createReplaceUriForResource()

TYPO3\CMS\Filelist\FileList::createReplaceUriForResource ( ResourceInterface  $resource)
protected

◆ getBackendUser()

◆ getConcreteTableName()

TYPO3\CMS\Filelist\FileList::getConcreteTableName ( string  $fieldName)
protected

Determine the concrete table name by checking if the field exists, while sys_file takes precedence.

Definition at line 1436 of file FileList.php.

References $GLOBALS.

Referenced by TYPO3\CMS\Filelist\FileList\getFieldLabel(), and TYPO3\CMS\Filelist\FileList\renderField().

◆ getFieldLabel()

TYPO3\CMS\Filelist\FileList::getFieldLabel ( string  $field)
protected

◆ getFileReferenceCount()

TYPO3\CMS\Filelist\FileList::getFileReferenceCount ( File  $file)
protected

Counts how often the given file is referenced. This is done by looking up the file in the "sys_refindex" table, while excluding sys_file_metadata relations as these are no such references.

Definition at line 1716 of file FileList.php.

References TYPO3\CMS\Core\Resource\AbstractFile\getUid(), and TYPO3\CMS\Core\Database\Connection\PARAM_INT.

Referenced by TYPO3\CMS\Filelist\FileList\getSortingValueForFile(), and TYPO3\CMS\Filelist\FileList\renderReferenceCount().

◆ getFolderInfo()

TYPO3\CMS\Filelist\FileList::getFolderInfo ( )

Gets the number of files and total size of a folder

Definition at line 411 of file FileList.php.

References TYPO3\CMS\Filelist\FileList\getLanguageService().

◆ getLanguageService()

◆ getPaginationLinkForDirection()

TYPO3\CMS\Filelist\FileList::getPaginationLinkForDirection ( ResourceCollectionPaginator  $paginator,
NavigationDirection  $direction 
)
protected

◆ getPaginationLinkForPage()

◆ getQueryBuilderForTable()

array<int, getTranslationsForMetaData($metaDataRecord) { $languageField = $GLOBALS['TCA']['sys_file_metadata']['ctrl']['languageField'] ?? ''; $languageParentField = $GLOBALS['TCA']['sys_file_metadata']['ctrl']['transOrigPointerField'] ?? ''; $queryBuilder = GeneralUtility::makeInstance(ConnectionPool::class)-> TYPO3\CMS\Filelist\FileList::getQueryBuilderForTable ( 'sys_file_metadata'  )
protected

Fetch the translations for a sys_file_metadata record

Parameters
array$metaDataRecord
Returns
‪array<int, array<string, mixed>> keys are the site language ids, values are the $rows

◆ getSortingValue()

TYPO3\CMS\Filelist\FileList::getSortingValue ( ResourceInterface  $resource,
string  $sortField 
)
protected

◆ getSortingValueForFile()

◆ getSortingValueForFolder()

TYPO3\CMS\Filelist\FileList::getSortingValueForFolder ( Folder  $resource,
string  $sortField 
)
protected

◆ getUserPermissions()

TYPO3\CMS\Filelist\FileList::getUserPermissions ( )
protected

◆ isEditMetadataAllowed()

◆ render()

◆ renderCheckboxActions()

string TYPO3\CMS\Filelist\FileList::renderCheckboxActions ( )
protected

Render convenience actions, such as "check all"

Returns
‪string HTML markup for the checkbox actions

Definition at line 1370 of file FileList.php.

References TYPO3\CMS\Filelist\FileList\getLanguageService().

Referenced by TYPO3\CMS\Filelist\FileList\renderListTableHeader().

◆ renderControl()

TYPO3\CMS\Filelist\FileList::renderControl ( ResourceView  $resourceView)
protected

◆ renderControlBrowse()

TYPO3\CMS\Filelist\FileList::renderControlBrowse ( ResourceView  $resourceView)
protected

Creates the control section for the element browser

Definition at line 943 of file FileList.php.

References TYPO3\CMS\Filelist\FileList\createControlInfo(), and TYPO3\CMS\Filelist\FileList\createControlSelect().

Referenced by TYPO3\CMS\Filelist\FileList\renderControl().

◆ renderControlManage()

◆ renderCreationTime()

TYPO3\CMS\Filelist\FileList::renderCreationTime ( ResourceView  $resourceView)
protected

Render creation time

Definition at line 699 of file FileList.php.

References TYPO3\CMS\Filelist\Dto\ResourceView\getCreatedAt().

Referenced by TYPO3\CMS\Filelist\FileList\renderListTableBody().

◆ renderField()

TYPO3\CMS\Filelist\FileList::renderField ( ResourceView  $resourceView,
string  $field 
)
protected

Render any resource field

Definition at line 752 of file FileList.php.

References TYPO3\CMS\Filelist\FileList\getConcreteTableName().

Referenced by TYPO3\CMS\Filelist\FileList\renderListTableBody().

◆ renderIcon()

TYPO3\CMS\Filelist\FileList::renderIcon ( ResourceView  $resourceView)
protected

◆ renderList()

◆ renderListTableBody()

◆ renderListTableFieldHeader()

TYPO3\CMS\Filelist\FileList::renderListTableFieldHeader ( string  $field)
protected

◆ renderListTableForwardBackwardNavigation()

TYPO3\CMS\Filelist\FileList::renderListTableForwardBackwardNavigation ( ResourceCollectionPaginator  $paginator,
NavigationDirection  $direction 
)
protected

◆ renderListTableHeader()

◆ renderModificationTime()

TYPO3\CMS\Filelist\FileList::renderModificationTime ( ResourceView  $resourceView)
protected

Render modification time

Definition at line 708 of file FileList.php.

References TYPO3\CMS\Filelist\Dto\ResourceView\getUpdatedAt().

Referenced by TYPO3\CMS\Filelist\FileList\renderListTableBody().

◆ renderName()

◆ renderPath()

TYPO3\CMS\Filelist\FileList::renderPath ( ResourceView  $resourceView)
protected

Render resource path

Definition at line 806 of file FileList.php.

References TYPO3\CMS\Filelist\Dto\ResourceView\getPath().

Referenced by TYPO3\CMS\Filelist\FileList\renderListTableBody().

◆ renderPermission()

TYPO3\CMS\Filelist\FileList::renderPermission ( ResourceView  $resourceView)
protected

◆ renderReferenceCount()

TYPO3\CMS\Filelist\FileList::renderReferenceCount ( ResourceView  $resourceView)
protected

Render reference count. Wraps the count into a button to open the element information in case references exists.

Definition at line 815 of file FileList.php.

References TYPO3\CMS\Filelist\FileList\getFileReferenceCount(), and TYPO3\CMS\Filelist\FileList\getLanguageService().

Referenced by TYPO3\CMS\Filelist\FileList\renderListTableBody().

◆ renderSelector()

TYPO3\CMS\Filelist\FileList::renderSelector ( ResourceView  $resourceView)
protected

Renders the checkbox to select a resource in the listing

Definition at line 780 of file FileList.php.

References TYPO3\CMS\Filelist\Dto\ResourceView\getCheckboxConfig().

Referenced by TYPO3\CMS\Filelist\FileList\renderListTableBody().

◆ renderSize()

TYPO3\CMS\Filelist\FileList::renderSize ( ResourceView  $resourceView)
protected

◆ renderThumbnail()

◆ renderTiles()

TYPO3\CMS\Filelist\FileList::renderTiles ( ResourceCollectionPaginator  $paginator,
array  $resourceViews,
ViewInterface  $view 
)
protected

◆ renderType()

TYPO3\CMS\Filelist\FileList::renderType ( ResourceView  $resourceView)
protected

◆ setColumnsToRender()

TYPO3\CMS\Filelist\FileList::setColumnsToRender ( array  $additionalFields = [])

Definition at line 252 of file FileList.php.

References TYPO3\CMS\Filelist\Type\fieldArray.

◆ setMode()

TYPO3\CMS\Filelist\FileList::setMode ( Mode  $mode)

◆ setResourceDisplayMatcher()

TYPO3\CMS\Filelist\FileList::setResourceDisplayMatcher ( ?Matcher  $matcher)

Definition at line 206 of file FileList.php.

◆ setResourceDownloadMatcher()

TYPO3\CMS\Filelist\FileList::setResourceDownloadMatcher ( ?Matcher  $matcher)

Definition at line 200 of file FileList.php.

◆ setResourceSelectableMatcher()

TYPO3\CMS\Filelist\FileList::setResourceSelectableMatcher ( ?Matcher  $matcher)

Definition at line 212 of file FileList.php.

◆ setResourceSelectedMatcher()

TYPO3\CMS\Filelist\FileList::setResourceSelectedMatcher ( ?Matcher  $matcher)

Definition at line 218 of file FileList.php.

◆ sortResources()

ResourceInterface [] TYPO3\CMS\Filelist\FileList::sortResources ( array  $resources,
string  $sortField 
)
protected
Returns
‪ResourceInterface[]

Definition at line 1603 of file FileList.php.

References TYPO3\CMS\Filelist\FileList\getLanguageService().

Referenced by TYPO3\CMS\Filelist\FileList\render().

◆ start()

TYPO3\CMS\Filelist\FileList::start ( Folder  $folderObject,
int  $currentPage,
string  $sort,
bool  $sortRev,
Mode  $mode = Mode::MANAGE 
)

Initialization of class

Parameters
Folder$folderObject‪The folder to work on
int$currentPage‪The current page to render
string$sort‪Sorting column
bool$sortRev‪Sorting direction
Mode$mode‪Mode of the file list

Definition at line 233 of file FileList.php.

References TYPO3\CMS\Filelist\FileList\$currentPage, TYPO3\CMS\Filelist\FileList\$folderObject, TYPO3\CMS\Filelist\FileList\$sort, TYPO3\CMS\Filelist\FileList\$sortRev, TYPO3\CMS\Core\Utility\MathUtility\forceIntegerInRange(), and TYPO3\CMS\Filelist\FileList\setMode().

Member Data Documentation

◆ $addElement_tdCssClass

array TYPO3\CMS\Filelist\FileList::$addElement_tdCssClass
Initial value:
= [
'_CONTROL_' => 'col-control',
'_SELECTOR_' => 'col-checkbox',
'icon' => 'col-icon',
'name' => 'col-title col-responsive',
]

Definition at line 128 of file FileList.php.

◆ $clipObj

Clipboard TYPO3\CMS\Filelist\FileList::$clipObj

$clipObj

Definition at line 141 of file FileList.php.

◆ $currentPage

int TYPO3\CMS\Filelist\FileList::$currentPage = 1

Current Page

Definition at line 86 of file FileList.php.

Referenced by TYPO3\CMS\Filelist\FileList\createModuleUri(), and TYPO3\CMS\Filelist\FileList\start().

◆ $eventDispatcher

EventDispatcherInterface TYPO3\CMS\Filelist\FileList::$eventDispatcher
protected

Definition at line 153 of file FileList.php.

◆ $fieldArray

array TYPO3\CMS\Filelist\FileList::$fieldArray = []

Decides the columns shown. Filled with values that refers to the keys of the data-array. $this->fieldArray[0] is the title column.

Definition at line 121 of file FileList.php.

◆ $folderObject

Folder TYPO3\CMS\Filelist\FileList::$folderObject
protected

Definition at line 137 of file FileList.php.

Referenced by TYPO3\CMS\Filelist\FileList\start().

◆ $iconFactory

IconFactory TYPO3\CMS\Filelist\FileList::$iconFactory
protected

Definition at line 155 of file FileList.php.

◆ $itemsPerPage

int TYPO3\CMS\Filelist\FileList::$itemsPerPage = 40

Default Max items shown

Definition at line 81 of file FileList.php.

◆ $maxTitleLength

int TYPO3\CMS\Filelist\FileList::$maxTitleLength = 30

Max length of strings

Definition at line 116 of file FileList.php.

◆ $mode

Mode TYPO3\CMS\Filelist\FileList::$mode = Mode::MANAGE

◆ $onlineMediaHelperRegistry

OnlineMediaHelperRegistry TYPO3\CMS\Filelist\FileList::$onlineMediaHelperRegistry
protected

Definition at line 159 of file FileList.php.

◆ $request

ServerRequestInterface TYPO3\CMS\Filelist\FileList::$request
protected

◆ $resourceDisplayMatcher

Matcher TYPO3\CMS\Filelist\FileList::$resourceDisplayMatcher = null
protected

Definition at line 146 of file FileList.php.

◆ $resourceDownloadMatcher

Matcher TYPO3\CMS\Filelist\FileList::$resourceDownloadMatcher = null
protected

Definition at line 144 of file FileList.php.

◆ $resourceFactory

ResourceFactory TYPO3\CMS\Filelist\FileList::$resourceFactory
protected

Definition at line 156 of file FileList.php.

◆ $resourceSelectableMatcher

Matcher TYPO3\CMS\Filelist\FileList::$resourceSelectableMatcher = null
protected

Definition at line 148 of file FileList.php.

◆ $resourceSelectedMatcher

Matcher TYPO3\CMS\Filelist\FileList::$resourceSelectedMatcher = null
protected

Definition at line 150 of file FileList.php.

◆ $searchDemand

FileSearchDemand TYPO3\CMS\Filelist\FileList::$searchDemand = null
protected

Definition at line 152 of file FileList.php.

Referenced by TYPO3\CMS\Filelist\FileList\render().

◆ $sort

string TYPO3\CMS\Filelist\FileList::$sort = ''

The field to sort by

Definition at line 101 of file FileList.php.

Referenced by TYPO3\CMS\Filelist\FileList\start().

◆ $sortRev

bool TYPO3\CMS\Filelist\FileList::$sortRev = true

Reverse sorting flag

Definition at line 106 of file FileList.php.

Referenced by TYPO3\CMS\Filelist\FileList\start().

◆ $thumbs

bool TYPO3\CMS\Filelist\FileList::$thumbs = false

Thumbnails on records containing files (pictures)

Definition at line 111 of file FileList.php.

◆ $totalbytes

int TYPO3\CMS\Filelist\FileList::$totalbytes = 0

Total file size of the current selection

Definition at line 91 of file FileList.php.

◆ $totalItems

int TYPO3\CMS\Filelist\FileList::$totalItems = 0

Total count of folders and files

Definition at line 96 of file FileList.php.

◆ $translateTools

TranslationConfigurationProvider TYPO3\CMS\Filelist\FileList::$translateTools
protected

Definition at line 158 of file FileList.php.

◆ $translationRecords

TYPO3\CMS\Filelist\FileList::$translationRecords
Initial value:
= $queryBuilder->select('*')
->from('sys_file_metadata')
->where(
$queryBuilder->expr()->eq(
$languageParentField,
$queryBuilder->createNamedParameter($metaDataRecord['uid'] ?? 0, ‪Connection::PARAM_INT)
),
$queryBuilder->expr()->gt(
$languageField,
$queryBuilder->createNamedParameter(0, ‪Connection::PARAM_INT)
)
)
->executeQuery()
->fetchAllAssociative()

Definition at line 586 of file FileList.php.

◆ $translations [1/2]

TYPO3\CMS\Filelist\FileList::$translations = []

Definition at line 601 of file FileList.php.

◆ $translations [2/2]

foreach ( $translationRecords as $record) return TYPO3\CMS\Filelist\FileList::$translations

Definition at line 606 of file FileList.php.

◆ $uriBuilder

UriBuilder TYPO3\CMS\Filelist\FileList::$uriBuilder
protected

Definition at line 157 of file FileList.php.

◆ $viewMode

ViewMode TYPO3\CMS\Filelist\FileList::$viewMode = ViewMode::TILES

Definition at line 76 of file FileList.php.

‪TYPO3\CMS\Core\Database\Connection\PARAM_INT
‪const PARAM_INT
Definition: Connection.php:52