TYPO3 CMS  TYPO3_6-2
ImageFeature.php
Go to the documentation of this file.
1 <?php
3 
18 
23 
27  protected $name = 'Image';
28 
32  protected $presetRegistry = array(
33  'TYPO3\\CMS\\Install\\Configuration\\Image\\GraphicsMagickPreset',
34  'TYPO3\\CMS\\Install\\Configuration\\Image\\ImageMagick6Preset',
35  'TYPO3\\CMS\\Install\\Configuration\\Image\\CustomPreset',
36  );
37 
44  public function getAdditionalSearchPath() {
45  $additionalPath = '';
46  if (isset($this->postValues['additionalSearchPath']) && strlen($this->postValues['additionalSearchPath'])) {
47  $additionalPath = $this->postValues['additionalSearchPath'];
48  }
49  return $additionalPath;
50  }
51 }