Questão 1
Questão
Which of the following objects are not TypoScript top level objects? (2)
Responda
-
config
-
TEXT
-
styles
-
GMENU
-
PAGE
-
includeLibs
Questão 2
Questão
What do you enter in the constants area to makethe following TypoScript setup code functional? (1)
config.language = {$langKey}
config.sys_language_uid = 1
config.htmlTag_langKey = {$langKey}
Responda
-
$langKey = de
-
{$langkey = en}
-
langKey = jp
-
langkey = cn
-
LANGKEY = at
Questão 3
Questão
You want to execute a replacement in content elements: the system is to replace the ###MAIL### placeholder with the current email address of the web master. How do you proceed? (1)
Responda
-
You enter the following line in the TypoScript constant area:
MAIL = info@mytypo3domain.de
-
You enter the following line in the TypoScript setup area:
MAIL = info@mytypo3domain.de
-
You enter the following line in the TypoScript setup area:
<...> = {$MAIL}
-
You enter the following line in the TypoScript constant area:
constant.MAIL = info@mytypo3domain.de
-
You enter the following line in the TypoScript setup area:
constants.MAIL = info@mytypo3domain.de
Questão 4
Questão
What is the output produced by this TypoScript
code? (1)
page = PAGE
page.10 = COA
page.10 {
30 = TEXT
30.value = A
30.wrap = B|C
40 = HTML
40.value = D
40.wrap = E|F
10 = TEXT
10.value < .40.value
20 < .30
40.value = G
}
Responda
-
DBACBAC
-
DBACD
-
GBACBAC
-
EDFBACEGF
-
DBACEGF
-
DBACEDF
-
BACBAC
Questão 5
Questão
What is the output produced by this TypoScript code? (1)
page = PAGE
page.10 = COA
page.10 {
30 = TEXT
30.value = A
40 = TEXT
40.value = C
20 = TEXT
20.value = B
20.stdWrap.append < .30
10 = TEXT
10.prepend < .40
10.value = D
}
Responda
-
ABCD
-
CDBAAC
-
BDCAAB
-
ABCADB
-
BDCAB
-
DBCAB
Questão 6
Questão
What is the output produced by this TypoScript code? (1)
object1 = TEXT
object1.value = value1
page = PAGE
page {
10 <= object1
15 < object1
15.value = -
20 < object1
}
object1.value = value3
Responda
-
value1
-
-value1
-
value1-value1
-
value1-value3
-
value3-value1
Questão 7
Questão
What code do you enter in place of the question marks so that the output of the script is AB? (1)
lib.obj = COA
lib.obj {
10 = COA
10.10 = TEXT
10.10.value = A
10.20 < .10
}
page = PAGE
page.10 = COA
page.10 {
10 =< lib.obj
???
}
Responda
-
10.value = B
-
10.10.value = B
-
10.20.value = B
-
10.10.20.value = B
-
10.10.20.10.value = B
-
10.10.10.20.value = B
Questão 8
Questão
Is it possible to check the backend_layout field in the backend, and if so, how? (1)
Responda
-
No, that is not possible. Page properties are only relevant in the
frontend and are checked there by TypoScript.
-
[globalVar = TSFE:current|backend_layout = 1]
-
[globalVar = TSFE:this|backend_layout = 1]
-
[globalVar = TSFE:page|backend_layout = 1]
-
[TSFE|backend_layout = 1]
-
[this|backend_layout = 1]
-
[page|backend_layout = 1]
-
[current|backend_layout = 1]
Questão 9
Questão
Which condition allows you to determine in the frontend whether a user is logged into the backend at the same time? (1)
Questão 10
Questão
What do you need to observe when creating your own condition? (5)
Responda
-
You have to create a PHP file.
-
You can only address a function, and not a class.
-
You address a function within a class.
-
The function can have any name.
-
The function has to start with user_.
-
It is possible to transfer parameters.
-
It is not possible to transfer parameters.
-
The function can return any value.
-
The function can only return true or false.
Questão 11
Questão
Is it possible to select any font in images that contain text and are created using the GIFBUILDER? (2)
Responda
-
Yes, you can use a font from any font file with the format ttf (True- Type fonts).
-
Yes, you can use a font from any font file with the format otf (OpenType fonts).
-
Yes, you can use a font from any font file with the format ctf (ClearType fonts).
-
Yes, you can use a font from any font file with the format pfm/pfb (Type 1 fonts).
-
No, you have to use an extension to do this.
-
No, it is not possible.
Questão 12
Questão
You want to use TypoScript to specify a background image. Which content element needs to replace the question marks? (1)
page = PAGE
page.10 = ???
page.10 {
file = fileadmin/backgroundimg.jpg
file.width = 100
file.height = 100
stdWrap.wrap = <div style="background-image:url(|); width:100px; ↩
height:100px;">Text</div>
}
Responda
-
IMG
-
IMAGE
-
IMG_RESOURCE
-
IMAGE_RESOURCE
-
GIFBUILDER
Questão 13
Questão
You want to display the data records from the tt_content table that have the IDs 2 and 3. What should be in place of the question marks? (1)
page = PAGE
page.10 = ???
page.10 {
tables = tt_content
source = 2,3
dontCheckPid = 1
}
Responda
-
TEXT
-
HTML
-
COA
-
RECORDS
-
DATA
-
CONTENT
Questão 14
Questão
How can you automatically replace specific strings with other strings in the output of the tt_content text content? (1)
tt_content.text.20 {
???
}
Responda
-
parseFunc.string1 = string2
-
parseFunc.short.string1 = string2
-
parseFunc.tags.string1 = string2
-
string1 = string2
-
HTMLparser.string1 = string2
-
HTMLparser.replace.string1 = string2
Questão 15
Questão
You want to prevent the content elements with IDs 37 and 38 from being output if it is 11 a.m. or later. What code do you have to enter in place of the question marks? (1)
page = PAGE
page.10 < styles.content.get
[hour = > 11]
page.10.??? {
isInList.field = uid
value = 37,38
negate = 1
}
[end]
Responda
-
if
-
stdWrap.if
-
renderObj.stdWrap.if
-
renderObj.if
-
if.stdWrap
Questão 16
Questão
What are the prerequisites for membership in the TYPO3 Association? (1)
Responda
-
Residence in the EU.
-
Residence in Europe.
-
Payment of a one-off fee.
-
Payment of a one-off fee and an annual membership fee.
-
You have to be suggested and selected by the TYPO3 Association.
-
You have to be able to show at least one project that you have implemented independently using TYPO3.
Questão 17
Questão
In which database tables are page configurations, content elements and website users stored? (3)
Responda
-
be_user
-
seiten
-
pages
-
feuser
-
tt_pages
-
content
-
tt_content
-
users
-
fe_users
Questão 18
Questão
What is cached in TYPO3? (4)
Responda
-
Images in the /fileadmin directory
-
The HTML output of static pages
-
The thumbnails of files in the /fileadmin directory that can be displayed in the Filelist module.
-
Configuration settings
-
TypoScript templates
-
Files that are loaded onto the server using a backend form
Questão 19
Questão
Where can you find help texts for a TypoScript option? (1)
Responda
-
In the TSref on http://www.typo3.org
-
In the TypoScript help module
-
In the template tools in the Setup section
-
In the Info module
-
In the TypoScript module
Questão 20
Questão
What exactly is TemplaVoilà? (2)
Responda
-
A TYPO3 module
-
A TYPO3 core feature
-
A TYPO3 core extension
-
A TYPO3 extension
-
A TYPO3 setting option
Questão 21
Questão
Which of the following processing statuses in the workspace exist by default? (2)
Questão 22
Questão
You want to refer to the DOCUMENT_BODY subpart in your HTML template. Which is the correct code for this purpose? (1)
page = PAGE
page.10 = TEMPLATE
page.10 {
template = FILE
template.file = fileadmin/template.html
??? = DOCUMENT_BODY
}
Responda
-
subpart
-
marks
-
useSubPart
-
workOnSubpart
-
defineSubpart