TYPO3 CMS  TYPO3_6-2
StaticFileCollectionConverter.php
Go to the documentation of this file.
1 <?php
3 
22 
26  protected $sourceTypes = array('integer');
27 
31  protected $targetType = 'TYPO3\\CMS\\Extbase\\Domain\\Model\\StaticFileCollection';
32 
36  protected $expectedObjectType = 'TYPO3\\CMS\\Core\\Resource\\Collection\\StaticFileCollection';
37 
42  protected function getObject($source) {
43  return $this->fileFactory->getCollectionObject($source);
44  }
45 }