Einchecken des OnlineStands

This commit is contained in:
2016-09-07 14:36:03 +00:00
parent feed788c84
commit 53295535eb
241 changed files with 69161 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
<?php
extract( $this -> _data );
if ( $this -> _editable )
{
?>
<div class="<?php echo ( isset ( $class ) ) ? $class . ' textimage ' : '' ; ?>grid_40col wrapper" id="content_textimage_<?php echo $text_image_id; ?>" data-editable="textimage">
<?php
}
else
{
?>
<div class="grid_40col wrapper">
<?php
}
?>
<div class="grid_40col">
<img class="grid_13col floatright" id="content_image_<?php echo $content_image_id; ?>" <?php echo ( $this -> _editable ) ? 'data-editable="image"' : '' ; ?>src="<?php echo ( file_exists( PATH_MED . $this -> _prefix . '/' . $this -> _siteId . '/' . $imgName . '.' . $imgExtension ) ) ? PATH_MED . $this -> _prefix . '/' . $this -> _siteId . '/' . $imgName . '.' . $imgExtension : '' ; ?>" title="<?php echo $imgTitle; ?>"/>
<div class="content" id="content_text_<?php echo $content_text_id; ?>" <?php echo ( $this -> _editable ) ? 'data-editable="text"' : '' ; ?>>
<?php echo $content; ?>
</div>
<br class="fix"/>
</div>
</div>