<?xml version="1.0" encoding="UTF-8" ?>
<feed xmlns="http://www.w3.org/2005/Atom">
    <link href="https://www.pixeleyes.de/shopware/blog/?sAtom=1" rel="self" type="application/atom+xml" />
    <author>
        <name>Pixeleyes GmbH</name>
    </author>
    <title>Blog / Atom Feed</title>
    <id>https://www.pixeleyes.de/shopware/blog/?sRss=1</id>
    <updated>2026-04-23T12:59:06+02:00</updated>
    
        <entry>
            <title type="text">Events in Flächenberechnung</title>
            <id>https://www.pixeleyes.de/service-und-support/shopware/events-in-flaechenberechnung</id>
            <link href="https://www.pixeleyes.de/service-und-support/shopware/events-in-flaechenberechnung"/>
            <summary type="html">
                <![CDATA[
                
                                            Im neuesten Update haben wir Events hinzugefügt so dass in Zukunft auch externe Programmierer Funktionen einbinden können
                                        ]]>
            </summary>
            <content type="html">
                <![CDATA[
                 Im neuesten Update haben wir Events hinzugefügt so dass in Zukunft auch externe Programmierer Funktionen einbinden können.    
  Kalkulation - Artikeldetailseite  Berechnung vor allen anderen Optionen, aber nach der Flächenberechnung     Shopware_Controller_Pixelmultioptionen_CalcAction_after   
  $custom_calcprice = $args-&amp;gt;getReturn();

        // Formulardaten
        $output = $args-&amp;gt;get(&#039;output&#039;);
        // Artikelstammdaten
        $productdata = $args-&amp;gt;get(&#039;productdata&#039;);

        // Rückgabe des Werts als ARRAY
        // Untenstehendes Beispiel gibt 200 EUR als Aufschlag zurcük
        // $custom_calcprice[&#039;customprice&#039;] = 200;
        return $custom_calcprice;



 
    Kalkulation - Artikeldetailseite  Berechnung nach allen anderen Optionen und der Flächenberechnung     Shopware_Controller_Pixelmultioptionen_CalcAction_beforecalc   
   
 $custom_calcprice = $args-&amp;gt;getReturn();
        // Formulardaten
        $output = $args-&amp;gt;get(&#039;output&#039;);
        // Artikelstammdaten
        $productdata = $args-&amp;gt;get(&#039;productdata&#039;);


        // Rückgabe des Werts als ARRAY
        // Untenstehendes Beispiel gibt 200 EUR als Aufschlag zurcük
        $custom_calcprice[&#039;customprice&#039;] = 200;
        return $custom_calcprice;

 
    Kalkulation - Zum Warenkorb hinzufügen  Berechnung vor allen anderen Optionen, aber nach der Flächenberechnung     Shopware_Controller_AddAction_beforecalc        
   /*
         * Unbedingt im Vorfeld ein zusätzliche Kompoonente hinzufügen
         * INSERT INTO pix_form_options_forms (form, description) VALUES (&#039;custom&#039;, &#039;Customfield&#039;
         */


        $custom_calcprice = $args-&amp;gt;getReturn();

        /*
        * Abfangen des Custom Formularfeldes pix_customfield
        *
        *  $getparameter = Shopware()-&amp;gt;Modules()-&amp;gt;Admin()-&amp;gt;sSYSTEM-&amp;gt;_GET[&#039;pix_customfield&#039;];
        * 
        */

        // Artikelstammdaten
        $productdata = $args-&amp;gt;get(&#039;productdata&#039;);
        // Id der Warenkorbposition
        $id = $args-&amp;gt;get(&#039;id&#039;);
        // Menge des Artikels
        $quantity = $args-&amp;gt;get(&#039;quantity&#039;);

        // Rückgabe des Preises als ARRAY $custom_calcprice[&#039;customprice&#039;]
        // Untenstehendes Beispiel gibt 200 EUR als Aufschlag zurcük
         $custom_calcprice[&#039;customprice&#039;] = 200;


        /*
         * Array der Optionswertdaten anhand des Formularfeldes pix_customfield
         * bzw. die Formularfelder für die custom component, muss pix_customfield lauten
         *
         * Beispiel: Abfangen des Custom Formularfeldes pix_customfield
         **/
           $getparameter = Shopware()-&amp;gt;Modules()-&amp;gt;Admin()-&amp;gt;sSYSTEM-&amp;gt;_GET[&#039;pix_customfield&#039;];
         /*
* 
         *
         * z.b. durch id und value kann per Datenbankabfrage
         * der untenstehende Array gefüllt $custom_calcprice[&#039;data&#039;]
         * und übergeben werden
         **/
                $custom_calcprice[&#039;data&#039;] = array(
                    &#039;LABEL&#039; =&amp;gt; &#039;optionname&#039;, // Optionswert
                    &#039;TEXT&#039; =&amp;gt; &#039;label&#039;,
                    &#039;MODEL&#039; =&amp;gt; &#039;model&#039;,
                    &#039;PREFIX&#039; =&amp;gt; &#039;+&#039;,
                    &#039;QTY&#039; =&amp;gt; &#039;1&#039;,
                    &#039;VALUE&#039; =&amp;gt; &#039;200 EUR&#039;,
                    &#039;VALUE_PLAIN&#039; =&amp;gt; &#039;200.00&#039;,
                    &#039;PRICE&#039; =&amp;gt; &#039;200.00&#039;,
                    &#039;ID&#039; =&amp;gt; &#039;options_id&#039; ,
                    &#039;VALUEID&#039; =&amp;gt; &#039;values_id&#039;,
                    &#039;ARTICLEID&#039; =&amp;gt; &#039;articleID&#039;,
                    &#039;ART&#039; =&amp;gt; &#039;CUSTOMFIELD&#039;,
                    &#039;BART&#039; =&amp;gt; &#039;CUSTOMFIELD&#039;,
                    &#039;OPTIONSSHOW&#039; =&amp;gt; 1,
                );
        

        return $custom_calcprice;


 
    Kalkulation - Zum Warenkorb hinzufügen  erechnung nach allen anderen Optionen und der Flächenberechnung     Shopware_Controller_AddAction_aftercalc   
    $custom_calcprice = $args-&amp;gt;getReturn();

        /*
         * Abfangen des Custom Formularfeldes pix_customfield
         *
         *  $getparameter = Shopware()-&amp;gt;Modules()-&amp;gt;Admin()-&amp;gt;sSYSTEM-&amp;gt;_GET[&#039;pix_customfield&#039;];
         * 
         */


        // Artikelstammdaten
        $productdata = $args-&amp;gt;get(&#039;productdata&#039;);
        // Id der Warenkorbposition
        $id = $args-&amp;gt;get(&#039;id&#039;);
        // Menge des Artikels
        $quantity = $args-&amp;gt;get(&#039;quantity&#039;);

        // Rückgabe des Preises als ARRAY $custom_calcprice[&#039;customprice&#039;]
        // Untenstehendes Beispiel gibt 200 EUR als Aufschlag zurcük
        $custom_calcprice[&#039;customprice&#039;] = 200;

        /*
                 * Array der Optionswertdaten anhand des Formularfeldes pix_customfield
                 * z.b. durch id und value kann per Datenbankabfrage
                 * der untenstehende Array gefüllt $custom_calcprice[&#039;data&#039;]
                 * und übergeben werden
                 *
                 */
                        $custom_calcprice[&#039;data&#039;] = array(
                            &#039;LABEL&#039; =&amp;gt; &#039;optionname&#039;, // Optionswert
                            &#039;TEXT&#039; =&amp;gt; &#039;label&#039;,
                            &#039;MODEL&#039; =&amp;gt; &#039;model&#039;,
                            &#039;PREFIX&#039; =&amp;gt; &#039;+&#039;,
                            &#039;QTY&#039; =&amp;gt; &#039;1&#039;,
                            &#039;VALUE&#039; =&amp;gt; &#039;200 EUR&#039;,
                            &#039;VALUE_PLAIN&#039; =&amp;gt; &#039;200.00&#039;,
                            &#039;PRICE&#039; =&amp;gt; &#039;200.00&#039;,
                            &#039;ID&#039; =&amp;gt; &#039;options_id&#039; ,
                            &#039;VALUEID&#039; =&amp;gt; &#039;values_id&#039;,
                            &#039;ARTICLEID&#039; =&amp;gt; &#039;articleID&#039;,
                            &#039;ART&#039; =&amp;gt; &#039;CUSTOMFIELD&#039;,
                            &#039;BART&#039; =&amp;gt; &#039;CUSTOMFIELD&#039;,
                            &#039;OPTIONSSHOW&#039; =&amp;gt; 1,
                        );
                

        return $custom_calcprice;



 
    Kalkulation - Warenkorb Update     Berechnung  Shopware_Controller_Update_calc 
   $custom_calcprice = $args-&amp;gt;getReturn();

        // Artikelstammdaten
        $productdata = $args-&amp;gt;get(&#039;productdata&#039;);
        // diverse Daten des Warenkorbs
        $data = $args-&amp;gt;get(&#039;data&#039;);
        // Menge des Artikels
        $quantity = $args-&amp;gt;get(&#039;quantity&#039;);
        // Daten der Option
        $optionsdata = $args-&amp;gt;get(&#039;optionsdata&#039;);

        // Rückgabe des Preises als ARRAY $custom_calcprice[&#039;customprice&#039;]
        // Untenstehendes Beispiel gibt 200 EUR als Aufschlag zurcük
        $custom_calcprice[&#039;customprice&#039;] = 200;

        /*
                 * Array der Optionswertdaten anhand des Formularfeldes pix_customfield
                 * z.b. durch id und value kann per Datenbankabfrage
                 * der untenstehende Array gefüllt $custom_calcprice[&#039;data&#039;]
                 * und übergeben werden
                 *
                  */
                        $custom_calcprice[&#039;data&#039;] = array(
                            &#039;LABEL&#039; =&amp;gt; &#039;optionname&#039;, // Optionswert
                            &#039;TEXT&#039; =&amp;gt; &#039;label&#039;,
                            &#039;MODEL&#039; =&amp;gt; &#039;model&#039;,
                            &#039;PREFIX&#039; =&amp;gt; &#039;+&#039;,
                            &#039;QTY&#039; =&amp;gt; &#039;1&#039;,
                            &#039;VALUE&#039; =&amp;gt; &#039;200 EUR&#039;,
                            &#039;VALUE_PLAIN&#039; =&amp;gt; &#039;200.00&#039;,
                            &#039;PRICE&#039; =&amp;gt; &#039;200.00&#039;,
                            &#039;ID&#039; =&amp;gt; &#039;options_id&#039; ,
                            &#039;VALUEID&#039; =&amp;gt; &#039;values_id&#039;,
                            &#039;ARTICLEID&#039; =&amp;gt; &#039;articleID&#039;,
                            &#039;ART&#039; =&amp;gt; &#039;CUSTOMFIELD&#039;,
                            &#039;BART&#039; =&amp;gt; &#039;CUSTOMFIELD&#039;,
                            &#039;OPTIONSSHOW&#039; =&amp;gt; 1,
                        );
               



 
 &amp;nbsp; 
                ]]>
            </content>

                            <updated>2017-10-02T01:30:00+02:00</updated>
                    </entry>

    
    
        <entry>
            <title type="text">Anfrageformular englisch</title>
            <id>https://www.pixeleyes.de/service-und-support/shopware/anfrageformular-englisch</id>
            <link href="https://www.pixeleyes.de/service-und-support/shopware/anfrageformular-englisch"/>
            <summary type="html">
                <![CDATA[
                
                                            Anzeige des richtigen Anfrageformulars auf englischer Seite
                                        ]]>
            </summary>
            <content type="html">
                <![CDATA[
                 In der Standardinstallation von Shopware wird das deutsche Formular auch auf der englischen Spracheverwendet. Unter den Grundeinstellungen kann man jedoch das richtige hinterlegen. 
 Die Einstellungen findet man unter:   Einstellungen &amp;gt; Grundeinstellungen &amp;gt; Storefront &amp;gt; Warenkorb / Artikeldetails &amp;gt; Tab Reiter &quot;Englisch &quot; ausw&amp;auml;hlen und richtige Formular ID eintragen. Nicht vergessen den Cache zu leeren. 
                ]]>
            </content>

                            <updated>2014-06-24T00:00:00+02:00</updated>
                    </entry>

    
    
        <entry>
            <title type="text">Optionen der Flächenberechnung in den Emails</title>
            <id>https://www.pixeleyes.de/service-und-support/shopware/optionen-der-flaechenberechnung-in-den-emails</id>
            <link href="https://www.pixeleyes.de/service-und-support/shopware/optionen-der-flaechenberechnung-in-den-emails"/>
            <summary type="html">
                <![CDATA[
                
                                            Optionen in den Emails anzeigen
                                        ]]>
            </summary>
            <content type="html">
                <![CDATA[
                 Um die Optionen auch in der Email anzeigen zu lassen, müssen Sie Folgenden Code unter EMail Vorlagen &amp;gt; sOrder einfügen : 
 Nach diesen Code: 
  {foreach item=details key=position from=$sOrderDetails}
{$position+1|fill:4} {$details.ordernumber|fill:20} {$details.quantity|fill:6} {$details.price|padding:8} EUR {$details.amount|padding:8} EUR
{$details.articlename|wordwrap:49|indent:5} 
	 
 &amp;nbsp; 
 Diesen Code einfügen: 
   
{if $details.attributes.attribute6 == &quot;MULTIOPTIONEN&quot;}{assign var=&quot;foo&quot; value=$details.attributes.attribute3|unserialize}
 
 
 {foreach name=aussen item=calc_data from=$foo.CALC_OPTIONS}
	    {$calc_data.LABEL}:{if $calc_data.TEXT}{$calc_data.TEXT}{/if} {if $calc_data.PRICE}{$calc_data.PRICE}{/if} {$calc_data.SUFFIX} 
 	{if $calc_data.WEIGHT  }{se name=&#039;CartItemWeight&#039;}Gewicht:{/se}:{$calc_data.WEIGHT} KG{/if} 
	    {/foreach}

{foreach name=aussen item=calcoptions_data from=$foo.OPTIONS}
{$calcoptions_data.LABEL}:{$calcoptions_data.TEXT|stripslashes},{if $calcoptions_data.PRICE}{$calcoptions_data.PRICE}{/if}{if $calcoptions_data.VALUE}{$calcoptions_data.VALUE}{/if} 


 {if $calcoptions_data.TEXTFIELD}
  {foreach name=aussen item=letter_data from=$calcoptions_data.TEXTFIELD}
  
  {if $calcoptions_data.SOTVID == $calcoptions_data.SOTVID}
  
   {$letter_data.LABEL}:{$letter_data.TEXT|stripslashes} , {if $letter_data.QTY &amp;gt; 1}{$letter_data.QTY} x{/if} {if $letter_data.PRICEPERLETTER}{$letter_data.PRICEPERLETTER}{if $letter_data.STEXT} je Buchstabe, Gesamt: {$letter_data.PRICE}{/if}{/if}{if $letter_data.VALUE}{$letter_data.VALUE}{/if} 
{/if} 
{/foreach}{/if} 

 
{/foreach}
{/if} 
   
	 
                ]]>
            </content>

                            <updated>2013-12-14T00:15:00+01:00</updated>
                    </entry>

    
    
        <entry>
            <title type="text">Optionen der Flächenberechnung in den Emails (Shopware 5)</title>
            <id>https://www.pixeleyes.de/service-und-support/shopware/optionen-der-flaechenberechnung-in-den-emails-shopware-5</id>
            <link href="https://www.pixeleyes.de/service-und-support/shopware/optionen-der-flaechenberechnung-in-den-emails-shopware-5"/>
            <summary type="html">
                <![CDATA[
                
                                            Optionen in den Emails anzeigen
                                        ]]>
            </summary>
            <content type="html">
                <![CDATA[
                 Um die Optionen auch in der Email anzeigen zu lassen, müssen Sie Folgenden Code unter EMail Vorlagen &amp;gt; sOrder einfügen : 
 Nach diesen Code: 
  {$details.articlename|wordwrap:80|indent:4} 
	 
 &amp;nbsp; 
 Diesen Code einfügen: 
   
{if $details.attributes.attribute6 == &quot;MULTIOPTIONEN&quot;}{assign var=&quot;foo&quot; value=$details.attributes.attribute3|unserialize}
 
 
 {foreach name=aussen item=calc_data from=$foo.CALC_OPTIONS}
	    {$calc_data.LABEL}:{if $calc_data.TEXT}{$calc_data.TEXT}{/if} {if $calc_data.PRICE}{$calc_data.PRICE}{/if} {$calc_data.SUFFIX} 
 	{if $calc_data.WEIGHT  }Gewicht:{$calc_data.WEIGHT} KG{/if} 
	    {/foreach}

{foreach name=aussen item=calcoptions_data from=$foo.OPTIONS}
{$calcoptions_data.LABEL}:{$calcoptions_data.TEXT|stripslashes},{if $calcoptions_data.PRICE}{$calcoptions_data.PRICE}{/if}{if $calcoptions_data.VALUE}{$calcoptions_data.VALUE}{/if} 


 {if $calcoptions_data.TEXTFIELD}
  {foreach name=aussen item=letter_data from=$calcoptions_data.TEXTFIELD}
  
  {if $calcoptions_data.SOTVID == $calcoptions_data.SOTVID}
  
   {$letter_data.LABEL}:{$letter_data.TEXT|stripslashes} , {if $letter_data.QTY &amp;gt; 1}{$letter_data.QTY} x{/if} {if $letter_data.PRICEPERLETTER}{$letter_data.PRICEPERLETTER}{if $letter_data.STEXT} je Buchstabe, Gesamt: {$letter_data.PRICE}{/if}{/if}{if $letter_data.VALUE}{$letter_data.VALUE}{/if} 
{/if} 
{/foreach}{/if} 

 
{/foreach}
{/if} 
    
	 
                ]]>
            </content>

                            <updated>2013-12-14T00:15:00+01:00</updated>
                    </entry>

    
    
        <entry>
            <title type="text">Bonuspunkte anzeigen in Flächenberechnung für Shopware 4</title>
            <id>https://www.pixeleyes.de/service-und-support/shopware/bonuspunkte-anzeigen-in-flaechenberechnung-fuer-shopware-4</id>
            <link href="https://www.pixeleyes.de/service-und-support/shopware/bonuspunkte-anzeigen-in-flaechenberechnung-fuer-shopware-4"/>
            <summary type="html">
                <![CDATA[
                
                                            &quot;on the Fly&quot; die Bonuspunkte zu berechnen im Plugin &quot;Flächenberechnung
                                        ]]>
            </summary>
            <content type="html">
                <![CDATA[
                 Folgendes k&amp;ouml;nnen Sie einbauen um &quot;on the Fly&quot; die Bonuspunkte zu berechnen.  Wenn Sie was &amp;auml;ndern im F&amp;auml;chenberechnungsplugin, werden Sie unterhalb sehen dass die Bonuspunkte berechnet werden anhand des Gesamtpreises und dem Faktor):    Datei engine/Shopware/Plugins/Community/Frontend/Pixelmultioptionen/templates/frontend/plugins/pixelmultioptionen/index.html   Nach 
  var fehler = 0; 
 Folgendes einf&amp;uuml;gen:   
  {/literal}{if $sBonusSystem.settings.bonus_point_conversion_factor}{literal} var bonuspointfaktor = {/literal}{$sBonusSystem.settings.bonus_point_conversion_factor};{/if}{literal} 
 Nach :   
  $(&#039;#pix_calculator_calcunit&#039;).html(responseJson.calcunit); 
 Folgendes einf&amp;uuml;gen:   
  {/literal}{if $sBonusSystem.settings.bonus_point_conversion_factor}{literal}
 
                                               var       strPrice = responseJson.preisergebnis;
                                               var       n=strPrice.replace( responseJson.currency.currency, &#039;&#039;); 
                                                           n = n.replace( &#039;,&#039;, &#039;.&#039;); 
                                                           n = n / {/literal}{$sBonusSystem.settings.bonus_point_conversion_factor}{literal};
                                                
                                              
 
 $(&#039;#detail .points_for_article .image&#039;).html(Math.floor(n)); {/literal}{/if}{literal} 
                ]]>
            </content>

                            <updated>2013-05-30T00:30:00+02:00</updated>
                    </entry>

    
    
        <entry>
            <title type="text">Optionen der Flächenberechnung in der PDF Rechnung ausgeben</title>
            <id>https://www.pixeleyes.de/service-und-support/shopware/optionen-der-flaechenberechnung-in-der-pdf-rechnung-ausgeben</id>
            <link href="https://www.pixeleyes.de/service-und-support/shopware/optionen-der-flaechenberechnung-in-der-pdf-rechnung-ausgeben"/>
            <summary type="html">
                <![CDATA[
                
                                            Optionen in der PDF Rechnung von Shopware ausgeben
                                        ]]>
            </summary>
            <content type="html">
                <![CDATA[
                 Wenn Sie die Optionen des Artikels die der Kunde&amp;nbsp; in einer Bestellung ausgewählt hat, in der PDF Rechnung ausgeben möchten, müssen Sie lediglich folgende Anpassung vornehmen:   
 
  Laden Sie die Datei /templates/_default/documents/index.html herunter  
  Suchen Sie nach folgenden Code   
  {if $position.name == &#039;Versandkosten&#039;}
				{s name=&quot;DocumentIndexPositionNameShippingCosts&quot;}{$position.name}{/s}
			{else}
				{s name=&quot;DocumentIndexPositionNameDefault&quot;}{$position.name|nl2br}{/s}
			{/if}  
 
  Fügen Sie danach folgendes ein 
   
			{if $position.attributes.attribute6 == &#039;MULTIOPTIONEN&#039;}
  
{foreach  item=calcdata from=$position.attributes.attribute3|unserialize}  
	     {foreach   item=calc_data from=$calcdata}
	     {$calc_data.LABEL}: {if $calc_data.TEXT}{$calc_data.TEXT}{/if}
        {if $calc_data.PRICE != &#039;0,00 EUR&#039;}{$calc_data.PRICE}{/if} {$calc_data.SUFFIX}&amp;lt;br /&amp;gt; 
	    {/foreach}
{/foreach} {/if}

     
 
 
 Sie können auch hier die Vorlagen für PDF Rechnung sowie Emailbestellvorlage herunterladen:   Download  
                ]]>
            </content>

                            <updated>2013-05-26T00:45:00+02:00</updated>
                    </entry>

    
    
        <entry>
            <title type="text">Optionen der Flächenberechnung in der PDF Rechnung ausgeben (Shopware 5</title>
            <id>https://www.pixeleyes.de/service-und-support/shopware/optionen-der-flaechenberechnung-in-der-pdf-rechnung-ausgeben-shopware-5</id>
            <link href="https://www.pixeleyes.de/service-und-support/shopware/optionen-der-flaechenberechnung-in-der-pdf-rechnung-ausgeben-shopware-5"/>
            <summary type="html">
                <![CDATA[
                
                                            Optionen in der PDF Rechnung von Shopware ausgeben
                                        ]]>
            </summary>
            <content type="html">
                <![CDATA[
                 Wenn Sie die Optionen des Artikels die der Kunde&amp;nbsp; in einer Bestellung ausgewählt hat, in der PDF Rechnung ausgeben möchten, müssen Sie lediglich folgende Anpassung vornehmen:   
 
  Laden Sie die Datei /templates/_default/documents/index.html herunter  
  Suchen Sie nach folgenden Code   
  {if $position.name == &#039;Versandkosten&#039;}
				{s name=&quot;DocumentIndexPositionNameShippingCosts&quot;}{$position.name}{/s}
			{else}
				{s name=&quot;DocumentIndexPositionNameDefault&quot;}{$position.name|nl2br}{/s}
			{/if}
 
 
  Fügen Sie danach folgenden Code ein  
  {if $position.attributes.attribute6 == &#039;MULTIOPTIONEN&#039;} 
 {foreach item=calcdata from=$position.attributes.attribute3|unserialize} {foreach item=calc_data from=$calcdata} {$calc_data.LABEL}:{if $calc_data.TEXT}{$calc_data.TEXT}{/if} {if $calc_data.PRICE != &#039;0,00 EUR&#039;}{$calc_data.PRICE}{/if} {$calc_data.SUFFIX}  {if $calc_data.TEXTFIELD} {foreach name=aussen item=letter_data from=$calc_data.TEXTFIELD} {if $calc_data.SOTVID == $calc_data.SOTVID}{$letter_data.LABEL}: {$letter_data.TEXT|stripslashes} , {if $letter_data.QTY &amp;gt; 1}{$letter_data.QTY} x{/if} {if $letter_data.PRICEPERLETTER}{$letter_data.PRICEPERLETTER}{if $letter_data.STEXT} je Buchstabe, Gesamt: {$letter_data.PRICE}{/if}{/if}{if $letter_data.VALUE}{$letter_data.VALUE}{/if}   {/if} {/foreach} {/if} {/foreach} {/foreach} 
  {/if}
 
 
 
                ]]>
            </content>

                            <updated>2013-05-26T00:45:00+02:00</updated>
                    </entry>

    
</feed>
