Pascal Bartl
Quiz von , erstellt am more than 1 year ago

TYPO3 CD 2020 (zweite Auflage) Quiz am 4.4 Validators, erstellt von Pascal Bartl am 09/04/2021.

1
0
0
Pascal Bartl
Erstellt von Pascal Bartl vor mehr als 3 Jahre
Schließen

4.4 Validators

Frage 1 von 3

1

Which of the following validation annotations are valid in principle? (3)

Wähle eine oder mehr der folgenden:

  • @validate NotEmpty, Word(max=3)

  • @validate $blog NotEmpty, Word(max=3)

  • @validate $blog NotEmpty, \Vendor\MyExtension\Validation\Validator\WordValidator(ma\
    x=3)

  • @validate $blog NotEmpty, Vendor.MyExtension:Word(max=3)

  • @validate $blog NotEmpty, Vendor.MyExtension:WordValidator(max=3)

Erklärung

Frage 2 von 3

1

From which validator class are all default validators derived? (1)

Wähle eine oder mehr der folgenden:

  • Class ObjectValidator

  • Class ValidationValidator

  • Class DefaultValidator

  • Class AbstractValidator

  • Class ValidationInterface

Erklärung

Frage 3 von 3

1

Given the following code in a domain model, which statements about the validator are correct? (2)

use TYPO3\CMS\Extbase\Annotation\Validate;
/**
* Title
*
* @var string
* @Validate("Vendor\MyExtension\Validation\Validator\ExampleValidator", options={"m\
inimum": 10})
*/
protected $title = '';

Wähle eine oder mehr der folgenden:

  • The method validate() of the validator class hast to accept the argument minimum in the
    method signatur

  • The TypoScript configuration persistence.validation.options.minimum = true must be set

  • The property $supportedOptions is required in the ExampleValidator class

  • A method named Minimum() is required in the ExampleValidator class

  • The validator class file should be stored as Classes/Validation/Validator/ExampleValidator.php

Erklärung