...
Am Beispiel "Text / Bild":
Codeblock | |||||
---|---|---|---|---|---|
| |||||
public function tile($viewID) { $paragraph = new FrameworkStyleguide\Entity\FrameworkParagraph(); $paragraph->content = new FrameworkStyleguide\StringSafe('Hello World'); return [ 'paragraph' => $paragraph ]; } |
...
Hier beispielhaft der Inhalt der config.json für "Text / Bild":
Codeblock | ||
---|---|---|
| ||
{ "coreType": "cms-core", "friendlyName": { "de": "Text / Bild", "en": "Text / Image" }, "depends": ["Theme/DefaultCms"] } |
...
"paragraph" steht in der view.hbs über die serve-Variable zur Verfügung:
Codeblock | ||||
---|---|---|---|---|
| ||||
{{{ compile serve.paragraph }}} |
...