Skip to content
Code-Schnipsel Gruppen Projekte
Commit 8f58f26c erstellt von Henning Leutz's avatar Henning Leutz :martial_arts_uniform:
Dateien durchsuchen

Merge branch 'dev' of dev.quiqqer.com:quiqqer/package-bricks into dev

Übergeordnete b3a3676c f1d8740e
No related branches found
No related tags found
Keine zugehörigen Merge Requests gefunden
...@@ -82,8 +82,6 @@ ...@@ -82,8 +82,6 @@
</brick> </brick>
<!-- Content Switcher --> <!-- Content Switcher -->
<brick control="\QUI\Bricks\Controls\ContentSwitcher"> <brick control="\QUI\Bricks\Controls\ContentSwitcher">
<title> <title>
...@@ -105,9 +103,25 @@ ...@@ -105,9 +103,25 @@
</brick> </brick>
<!-- Image Brick -->
<brick control="\QUI\Bricks\Controls\Image">
<title>
<locale group="quiqqer/bricks" var="bricks.Image.title"/>
</title>
<description>
<locale group="quiqqer/bricks" var="bricks.Image.description"/>
</description>
<settings>
<setting name="link" class="project-site">
<locale group="quiqqer/bricks" var="Image.link"/>
</setting>
<setting name="picture" class="media-image">
<locale group="quiqqer/bricks" var="Image.picture"/>
</setting>
</settings>
</brick>
...@@ -129,7 +143,7 @@ ...@@ -129,7 +143,7 @@
</settings> </settings>
</brick> </brick>
/* Maps */ <!-- Maps -->
<brick control="\QUI\Bricks\Controls\GoogleMaps"> <brick control="\QUI\Bricks\Controls\GoogleMaps">
<title> <title>
......
...@@ -2,16 +2,13 @@ ...@@ -2,16 +2,13 @@
{foreach from=$entries item=entry key=key} {foreach from=$entries item=entry key=key}
{assign var=img value=$entry.img} {assign var=img value=$entry.img}
<!-- display on desktops, replace text and image position by adding a new entry --> <!-- display on desktops, replace text and image position by adding a new entry -->
<div class="content-switcher hide-on-mobile"> <section class="content-switcher hide-on-mobile">
{assign var=modKey value=$key+1} {assign var=modKey value=$key+1}
{if $modKey && $modKey % 2 !== 0 } {if $modKey && $modKey % 2 !== 0 }
<div class="content-switcher-image"> <div class="content-switcher-image">
{if $img != ""} {if $img != ""}
<img width=300 height=auto src="{$entry.img}"/> {image src=$entry.img width=300}
{else}
<img style="display: none;">
{/if} {/if}
</div> </div>
<div class="content-switcher-content"> <div class="content-switcher-content">
...@@ -26,27 +23,23 @@ ...@@ -26,27 +23,23 @@
<div class="content-switcher-image"> <div class="content-switcher-image">
{if $img != ""} {if $img != ""}
<img width=300 height=auto src="{$entry.img}"/> {image src=$entry.img width=300}
{else}
<img style="display: none;">
{/if} {/if}
</div> </div>
{/if} {/if}
</div> </section>
<!-- for small screens: image always comes above the text --> <!-- for small screens: image always comes above the text -->
<div class="content-switcher hide-on-desktop"> <section class="content-switcher hide-on-desktop">
<div class="content-switcher-image"> <div class="content-switcher-image">
{if $img != ""} {if $img != ""}
<img width=300 height=auto src="{$entry.img}"/> {image src=$entry.img width=300}
{else}
<img style="display: none;">
{/if} {/if}
</div> </div>
<div class="content-switcher-content"> <div class="content-switcher-content">
<h1>{$entry.title}</h1> <h1>{$entry.title}</h1>
<p>{$entry.content}</p> <p>{$entry.content}</p>
</div> </div>
</div> </section>
{/foreach} {/foreach}
\ No newline at end of file
/**/
\ No newline at end of file
{assign var=img value=$brickImage}
<section>
{image src=$brickImage}
</section>
\ No newline at end of file
<?php
/**
* This file contains QUI\Bricks\Controls\Image
*/
namespace QUI\Bricks\Controls;
use QUI;
/**
* Class Image
*
* @package quiqqer/bricks
*/
class Image extends QUI\Control
{
/**
* constructor
*
* @param Array $attributes
*/
public function __construct($attributes = array())
{
// default options
$this->setAttributes(array(
'title' => 'Image Brick',
'contentList' => false,
'entries' => array()
));
parent::__construct($attributes);
$this->addCSSFile(
dirname(__FILE__) . '/Image.css'
);
}
/**
* (non-PHPdoc)
*
* @see \QUI\Control::create()
*/
public function getBody()
{
$Engine = QUI::getTemplateManager()->getEngine();
$entries = $this->getAttribute('entries');
$brickImage = $this->getAttribute('picture');
$Engine->assign(array(
'this' => $this,
'entries' => $entries,
'brickImag' => $brickImage
));
return $Engine->fetch(dirname(__FILE__).'/Image.html');
}
}
...@@ -457,13 +457,35 @@ M&ouml;chten Sie die Bausteine aus der Bausteinzone entfernen?</p>]]></de> ...@@ -457,13 +457,35 @@ M&ouml;chten Sie die Bausteine aus der Bausteinzone entfernen?</p>]]></de>
</locale> </locale>
<!-- Content Switcher --> <!-- Content Switcher -->
<locale name="brick.ContentSwitcher.title">
<de><![CDATA[Baustein: Content Switcher]]></de>
<en><![CDATA[Brick: Content Switcher]]></en>
</locale>
<locale name="ContentSwitcher.title"> <locale name="ContentSwitcher.title">
<de><![CDATA[Baustein-Überschrift]]></de> <de><![CDATA[Baustein-Überschrift]]></de>
<en><![CDATA[]]></en> <en><![CDATA[]]></en>
</locale> </locale>
<locale name="ContentSwitcher.socialList"> <locale name="ContentSwitcher.entries">
<de><![CDATA[Einträge]]></de> <de><![CDATA[Einträge]]></de>
<en><![CDATA[]]></en> <en><![CDATA[]]></en>
</locale> </locale>
<!-- Image Brick -->
<locale name="bricks.Image.link">
<de><![CDATA[Baustein: Bild]]></de>
<en><![CDATA[Brick: Image]]></en>
</locale>
<locale name="Image.link">
<de><![CDATA[Link]]></de>
<en><![CDATA[Hyperlink]]></en>
</locale>
<locale name="Image.title">
<de><![CDATA[Baustein-Überschrift]]></de>
<en><![CDATA[]]></en>
</locale>
<locale name="Image.picture">
<de><![CDATA[Bild auswählen]]></de>
<en><![CDATA[]]></en>
</locale>
</groups> </groups>
</locales> </locales>
\ No newline at end of file
0% oder .
You are about to add 0 people to the discussion. Proceed with caution.
Bearbeitung dieser Nachricht zuerst beenden!
Bitte registrieren oder zum Kommentieren