Abschnitt: Youtube: Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
Zeile 1: | Zeile 1: | ||
− | = Beschreibung = | + | ==Beschreibung== |
Der Youtube-Abschnitt bietet die Möglichkeit Youtube-Videos anhand der Video-Id oder Youtube-URL einzubinden. Eine Ausgabe erfolgt nur wenn eine Video-Id / Youtube-URL und ein Alternativtext eingetragen sind. | Der Youtube-Abschnitt bietet die Möglichkeit Youtube-Videos anhand der Video-Id oder Youtube-URL einzubinden. Eine Ausgabe erfolgt nur wenn eine Video-Id / Youtube-URL und ein Alternativtext eingetragen sind. | ||
− | = Datenstruktur IES = | + | ==Konfiguration== |
+ | |||
+ | ===IES Optionen=== | ||
+ | |||
+ | <source lang="javascript"> | ||
+ | { | ||
+ | "sectionTypes": { | ||
+ | "youtube": { | ||
+ | "id" : "youtube", | ||
+ | "name": "Youtube", | ||
+ | "order": 0.1, | ||
+ | "template": { "module" : "sitekit-module", "uri" : "/templates/sectionTypes/youtube.spml" }, | ||
+ | "aggregator": { "module" : "sitekit-module", "uri" : "/aggregator/sectionTypes/youtube.spml" } | ||
+ | }, | ||
+ | ... | ||
+ | } | ||
+ | } | ||
+ | </source> | ||
+ | |||
+ | ==Mehrsprachigkeit== | ||
+ | ===IES Mehrsprachigkeit=== | ||
+ | |||
+ | <pre class="json">{ | ||
+ | "label": { | ||
+ | "video": "YouTube Video-ID oder -URL", | ||
+ | "videoAspectRatio": "Seitenverhältnis des Videos", | ||
+ | "youtubeAutoplay": "Abspielen des Videos automatisch starten", | ||
+ | "videoLegend": "Videounterschrift", | ||
+ | "videoCopyright": "Copyright", | ||
+ | "videoText": "Alternativtext" | ||
+ | }, | ||
+ | "notice": { | ||
+ | "required": "*(<em>Pflichtfeld, zur Ausgabe des Videos erforderlich</em>)" | ||
+ | } | ||
+ | }</pre> | ||
+ | |||
+ | ===PHP Mehrsprachigkeit=== | ||
+ | Hat keine Mehrsprachigkeits-Definitionen in PHP | ||
+ | |||
+ | |||
+ | ==Datenstruktur== | ||
+ | ===IES Datenstruktur=== | ||
{| class="prettytable" | {| class="prettytable" | ||
Zeile 36: | Zeile 77: | ||
|} | |} | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
<noinclude> | <noinclude> | ||
[[Category:Abschnitte]] | [[Category:Abschnitte]] | ||
</noinclude> | </noinclude> |
Version vom 17. Juli 2015, 13:47 Uhr
Beschreibung
Der Youtube-Abschnitt bietet die Möglichkeit Youtube-Videos anhand der Video-Id oder Youtube-URL einzubinden. Eine Ausgabe erfolgt nur wenn eine Video-Id / Youtube-URL und ein Alternativtext eingetragen sind.
Konfiguration
IES Optionen
{
"sectionTypes": {
"youtube": {
"id" : "youtube",
"name": "Youtube",
"order": 0.1,
"template": { "module" : "sitekit-module", "uri" : "/templates/sectionTypes/youtube.spml" },
"aggregator": { "module" : "sitekit-module", "uri" : "/aggregator/sectionTypes/youtube.spml" }
},
...
}
}
Mehrsprachigkeit
IES Mehrsprachigkeit
{ "label": { "video": "YouTube Video-ID oder -URL", "videoAspectRatio": "Seitenverhältnis des Videos", "youtubeAutoplay": "Abspielen des Videos automatisch starten", "videoLegend": "Videounterschrift", "videoCopyright": "Copyright", "videoText": "Alternativtext" }, "notice": { "required": "*(<em>Pflichtfeld, zur Ausgabe des Videos erforderlich</em>)" } }
PHP Mehrsprachigkeit
Hat keine Mehrsprachigkeits-Definitionen in PHP
Datenstruktur
IES Datenstruktur
Name | Typ | Beschreibung |
---|---|---|
sp_video
|
String | Video-Id oder Youtube-URL |
sp_videoAspectRatio
|
String | Seitenverhältnis für die Ausgabe (im Format 16x9 )
|
sp_videoAutoplay
|
Boolean | Steuert ob die Wiedergabe nach dem Seitenaufruf gestartet werden soll |
sp_videoText
|
String | Video-Alternativtext |
sp_videoLegend
|
String | Video Unterschrift |
sp_videoCopyright
|
String | Video Copyright |