Pregunta 1
Pregunta
Which of the following objects are not TypoScript top level objects? (2)
Respuesta
-
config
-
TEXT
-
styles
-
GMENU
-
PAGE
-
includeLibs
Pregunta 2
Pregunta
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}
Respuesta
-
$langKey = de
-
{$langkey = en}
-
langKey = jp
-
langkey = cn
-
LANGKEY = at
Pregunta 3
Pregunta
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)
Respuesta
-
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
Pregunta 4
Pregunta
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
}
Respuesta
-
DBACBAC
-
DBACD
-
GBACBAC
-
EDFBACEGF
-
DBACEGF
-
DBACEDF
-
BACBAC
Pregunta 5
Pregunta
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
}
Respuesta
-
ABCD
-
CDBAAC
-
BDCAAB
-
ABCADB
-
BDCAB
-
DBCAB
Pregunta 6
Pregunta
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
Respuesta
-
value1
-
-value1
-
value1-value1
-
value1-value3
-
value3-value1
Pregunta 7
Pregunta
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
???
}
Respuesta
-
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
Pregunta 8
Pregunta
Is it possible to check the backend_layout field in the backend, and if so, how? (1)
Respuesta
-
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]
Pregunta 9
Pregunta
Which condition allows you to determine in the frontend whether a user is logged into the backend at the same time? (1)
Pregunta 10
Pregunta
What do you need to observe when creating your own condition? (5)
Respuesta
-
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.
Pregunta 11
Pregunta
Is it possible to select any font in images that contain text and are created using the GIFBUILDER? (2)
Respuesta
-
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.
Pregunta 12
Pregunta
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>
}
Respuesta
-
IMG
-
IMAGE
-
IMG_RESOURCE
-
IMAGE_RESOURCE
-
GIFBUILDER
Pregunta 13
Pregunta
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
}
Respuesta
-
TEXT
-
HTML
-
COA
-
RECORDS
-
DATA
-
CONTENT
Pregunta 14
Pregunta
How can you automatically replace specific strings with other strings in the output of the tt_content text content? (1)
tt_content.text.20 {
???
}
Respuesta
-
parseFunc.string1 = string2
-
parseFunc.short.string1 = string2
-
parseFunc.tags.string1 = string2
-
string1 = string2
-
HTMLparser.string1 = string2
-
HTMLparser.replace.string1 = string2
Pregunta 15
Pregunta
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]
Respuesta
-
if
-
stdWrap.if
-
renderObj.stdWrap.if
-
renderObj.if
-
if.stdWrap
Pregunta 16
Pregunta
What are the prerequisites for membership in the TYPO3 Association? (1)
Respuesta
-
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.
Pregunta 17
Pregunta
In which database tables are page configurations, content elements and website users stored? (3)
Respuesta
-
be_user
-
seiten
-
pages
-
feuser
-
tt_pages
-
content
-
tt_content
-
users
-
fe_users
Pregunta 18
Pregunta
What is cached in TYPO3? (4)
Respuesta
-
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
Pregunta 19
Pregunta
Where can you find help texts for a TypoScript option? (1)
Respuesta
-
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
Pregunta 20
Pregunta
What exactly is TemplaVoilà? (2)
Respuesta
-
A TYPO3 module
-
A TYPO3 core feature
-
A TYPO3 core extension
-
A TYPO3 extension
-
A TYPO3 setting option
Pregunta 21
Pregunta
Which of the following processing statuses in the workspace exist by default? (2)
Pregunta 22
Pregunta
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
}
Respuesta
-
subpart
-
marks
-
useSubPart
-
workOnSubpart
-
defineSubpart