Ejemplo n.º 1
0
 /**
  * Constructor
  *
  * @param array $arguments Typoscript configuration
  * @return void
  */
 public function __construct($arguments)
 {
     $this->setFormat($arguments['format']);
     parent::__construct($arguments);
 }
Ejemplo n.º 2
0
 /**
  * Constructor
  *
  * @param array $arguments Typoscript configuration
  */
 public function __construct($arguments)
 {
     $this->setField($arguments['field']);
     parent::__construct($arguments);
 }
Ejemplo n.º 3
0
 /**
  * Constructor
  *
  * @param array $arguments Typoscript configuration
  * @return void
  */
 public function __construct($arguments)
 {
     $this->setRegularExpression($arguments['expression']);
     parent::__construct($arguments);
 }
 /**
  * Constructor
  *
  * @param array $arguments Typoscript configuration
  */
 public function __construct($arguments)
 {
     $this->setMaximum($arguments['maximum']);
     parent::__construct($arguments);
 }
 /**
  * Constructor
  *
  * @param array $arguments Typoscript configuration
  * @return void
  */
 public function __construct($arguments)
 {
     $this->setAllowedTypes($arguments['types']);
     parent::__construct($arguments);
 }
Ejemplo n.º 6
0
 /**
  * Constructor
  *
  * @param array $arguments Typoscript configuration
  */
 public function __construct($arguments = array())
 {
     $this->setAllowWhiteSpace($arguments['allowWhiteSpace']);
     parent::__construct($arguments);
 }
Ejemplo n.º 7
0
 /**
  * Constructor
  *
  * @param array $arguments Typoscript configuration
  */
 public function __construct($arguments)
 {
     $this->charsetConverter = \TYPO3\CMS\Core\Utility\GeneralUtility::makeInstance(\TYPO3\CMS\Core\Charset\CharsetConverter::class);
     $this->setMinimum($arguments['minimum'])->setMaximum($arguments['maximum']);
     parent::__construct($arguments);
 }
Ejemplo n.º 8
0
 /**
  * Constructor
  *
  * @param array $arguments Typoscript configuration
  */
 public function __construct($arguments)
 {
     $this->setMinimum($arguments['minimum'])->setMaximum($arguments['maximum'])->setInclusive($arguments['inclusive']);
     parent::__construct($arguments);
 }
Ejemplo n.º 9
0
 /**
  * Constructor
  *
  * @param array $arguments Typoscript configuration
  */
 public function __construct($arguments)
 {
     $this->setArray($arguments['array.'])->setStrict($arguments['strict']);
     parent::__construct($arguments);
 }