Versionen im Vergleich

Schlüssel

  • Diese Zeile wurde hinzugefügt.
  • Diese Zeile wurde entfernt.
  • Formatierung wurde geändert.

...

Am Beispiel "Text / Bild":

Codeblock
RDark
languagephptheme
titleAm Beispiel "Text / Bild":
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
titleBeispiel: Inhalt der config.json für "Text / Bild":
{
  "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
languagexml
titleBeispiel: view.hbs
{{{ compile serve.paragraph }}}

...