TYPO3 CMS  TYPO3_6-2
ImagePreviewTask.php
Go to the documentation of this file.
1 <?php
3 
17 use \TYPO3\CMS\Core\Resource;
18 
23 
27  protected $type = 'Image';
28 
32  protected $name = 'Preview';
33 
39  public function getTargetFileName() {
40  return 'preview_' . parent::getTargetFilename();
41  }
42 
50  protected function isValidConfiguration(array $configuration) {
55  }
56 
65  public function fileNeedsProcessing() {
66  // TODO: Implement fileNeedsProcessing() method.
67 
72  }
73 }