Pascal Bartl
Quiz by , created more than 1 year ago

TYPO3 CD 2020 (zweite Auflage) Quiz on 2.7 Miscellaneous, created by Pascal Bartl on 29/03/2021.

0
0
0
Pascal Bartl
Created by Pascal Bartl about 3 years ago
Close

2.7 Miscellaneous

Question 1 of 4

1

Which statements about XLIFF files are correct? (2)

Select one or more of the following:

  • The original language and its translations are in the same file

  • Every translation requires its own file

  • XLIFF files are located in the directory Resources/Private/Language/

  • XLIFF files are located in the directory Configuration/Language/

  • XLIFF files are located in the directory Classes/Language/

Explanation

Question 2 of 4

1

What are valid file names of language files in TYPO3 by default? (2)

Select one or more of the following:

  • locallang.php

  • LocalLanguage.php

  • locallang.xml

  • LocalLanguage.xml

  • locallang.xlf

  • locallang.xliff

Explanation

Question 3 of 4

1

Which statements about versioning are correct? (1)

Select one or more of the following:

  • All database records are versioned by default

  • For each database table, another table is required, whose name must be prefixed with t3ver_

  • If the appropriate fields exist in the TCA, TYPO3 automatically creates the fields required for versioning

  • Database tables which should be versioned must be configured in the Install Tool

  • Field names prefixed with t3ver_ are versioned automatically by the TYPO3 core

Explanation

Question 4 of 4

1

How can a singleton be retrieved in a controller? (3)

Select one or more of the following:

  • By instantiating the class using GeneralUtility::makeInstance()

  • By instantiating the class using the Object Manager

  • By instantiating the class using the Persistence Manager

  • The class needs to be marked as a singlton by using the interface
    \TYPO3\CMS\Core\SingletonInterface

  • The class needs to extend the class t3lib_Singleton

  • The Annotation @singleton needs to be added to the class

Explanation