Test 7 (Chapter 8 I)

Beschreibung

Quiz am Test 7 (Chapter 8 I), erstellt von Ma Hi am 19/06/2015.
Ma Hi
Quiz von Ma Hi, aktualisiert more than 1 year ago
Ma Hi
Erstellt von Ma Hi vor etwa 9 Jahre
8
0

Zusammenfassung der Ressource

Frage 1

Frage
Which of the following objects are not TypoScript top level objects? (2)
Antworten
  • config
  • TEXT
  • styles
  • GMENU
  • PAGE
  • includeLibs

Frage 2

Frage
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}
Antworten
  • $langKey = de
  • {$langkey = en}
  • langKey = jp
  • langkey = cn
  • LANGKEY = at

Frage 3

Frage
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)
Antworten
  • 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

Frage 4

Frage
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 }
Antworten
  • DBACBAC
  • DBACD
  • GBACBAC
  • EDFBACEGF
  • DBACEGF
  • DBACEDF
  • BACBAC

Frage 5

Frage
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 }
Antworten
  • ABCD
  • CDBAAC
  • BDCAAB
  • ABCADB
  • BDCAB
  • DBCAB

Frage 6

Frage
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
Antworten
  • value1
  • -value1
  • value1-value1
  • value1-value3
  • value3-value1

Frage 7

Frage
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 ??? }
Antworten
  • 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

Frage 8

Frage
Is it possible to check the backend_layout field in the backend, and if so, how? (1)
Antworten
  • 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]

Frage 9

Frage
Which condition allows you to determine in the frontend whether a user is logged into the backend at the same time? (1)
Antworten
  • [belogin = true]
  • [BEloginUser = *]
  • [globalVar = TSFE : beUserLogin > 0]
  • [globalVar = TSFE : beLogin > 0]
  • [TSFE:beUser > 0]

Frage 10

Frage
What do you need to observe when creating your own condition? (5)
Antworten
  • 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.

Frage 11

Frage
Is it possible to select any font in images that contain text and are created using the GIFBUILDER? (2)
Antworten
  • 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.

Frage 12

Frage
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> }
Antworten
  • IMG
  • IMAGE
  • IMG_RESOURCE
  • IMAGE_RESOURCE
  • GIFBUILDER

Frage 13

Frage
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 }
Antworten
  • TEXT
  • HTML
  • COA
  • RECORDS
  • DATA
  • CONTENT

Frage 14

Frage
How can you automatically replace specific strings with other strings in the output of the tt_content text content? (1) tt_content.text.20 { ??? }
Antworten
  • parseFunc.string1 = string2
  • parseFunc.short.string1 = string2
  • parseFunc.tags.string1 = string2
  • string1 = string2
  • HTMLparser.string1 = string2
  • HTMLparser.replace.string1 = string2

Frage 15

Frage
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]
Antworten
  • if
  • stdWrap.if
  • renderObj.stdWrap.if
  • renderObj.if
  • if.stdWrap

Frage 16

Frage
What are the prerequisites for membership in the TYPO3 Association? (1)
Antworten
  • 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.

Frage 17

Frage
In which database tables are page configurations, content elements and website users stored? (3)
Antworten
  • be_user
  • seiten
  • pages
  • feuser
  • tt_pages
  • content
  • tt_content
  • users
  • fe_users

Frage 18

Frage
What is cached in TYPO3? (4)
Antworten
  • 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

Frage 19

Frage
Where can you find help texts for a TypoScript option? (1)
Antworten
  • 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

Frage 20

Frage
What exactly is TemplaVoilà? (2)
Antworten
  • A TYPO3 module
  • A TYPO3 core feature
  • A TYPO3 core extension
  • A TYPO3 extension
  • A TYPO3 setting option

Frage 21

Frage
Which of the following processing statuses in the workspace exist by default? (2)
Antworten
  • Editing
  • Review
  • Updating
  • Deleted
  • Publish
  • Ready to publish
  • Rejected
  • None of the above, as they are created specifically.

Frage 22

Frage
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 }
Antworten
  • subpart
  • marks
  • useSubPart
  • workOnSubpart
  • defineSubpart
Zusammenfassung anzeigen Zusammenfassung ausblenden

ähnlicher Inhalt

Abschluss Test
Ma Hi
Chapter 4
Ma Hi
Chapter 6 II (6.5-6.8)
Ma Hi
Chapter 7
Ma Hi
Chapter 5
Ma Hi
Chapter 6
Ma Hi
Chapter 8 II
Ma Hi
Chapter 8 III
Ma Hi
Chapter 1
Ma Hi
Chapter 8 I
Ma Hi
Test 5 (Chapter 6)
Ma Hi