Anpassung an Data-Attribute und Verzeichnisstrukturen

This commit is contained in:
2016-10-05 20:53:46 +00:00
parent c35f571b0b
commit fe8bd9016b
11 changed files with 30 additions and 12 deletions

View File

@@ -13,7 +13,7 @@
$editorData = '';
if ($this->isEditable === true)
{
$editorData = ' data-editor="imageText" data-id="' . $this->data['ID'] . '" data-element="imageText_' . $this->data['ID'] . '"';
$editorData = ' data-editor="ImageText" data-id="' . $this->data['ID'] . '" data-element="ImageText_' . $this->data['ID'] . '"';
}
?>

View File

@@ -52,7 +52,7 @@
$editorData = '';
if ($this->isEditable === true)
{
$editorData = ' data-editor="headline" data-id="' . $this->data['navID'] . '" data-element="headline_' . $this->data['navID'] . '"';
$editorData = ' data-editor="Headline" data-id="' . $this->data['navID'] . '" data-element="Headline_' . $this->data['navID'] . '"';
}
?>
<div class="row"<?php echo $editorData; ?>><h1 class="col-md-12"><?php echo $this->data['headline']; ?></h1></div>