Quantcast
Channel: OXID Community Forum
Viewing all articles
Browse latest Browse all 6951

OXID Dokumentation Azure Template Änderungen

$
0
0
Hallo :)

Einleitung
Versionswechseln bringen meist Änderungen am Azure Template mit sich.

Beispiel:
Versionswechsel von OXID CE 4.6.6 nach OXID CE 4.7.0. In diesem Versionswechsel gab es eine Änderung in der Template Datei listitem_grid.tpl beim Methoden Aufruf getFPrice(). Dort kamen einige Abfragen von Methoden Bedingungen hinzu für Variantenartikel, welche hinzugefügt wurden.

OXID CE 4.6.6 listitem_grid.tpl Ausschnitt

PHP Code:

[{block name="widget_product_listitem_grid_price_value"}]
  [{if 
$product->getFPrice()}]
    <
strong><span>[{ $product->getFPrice() }]</span> [{ $currency->sign}] [{if !($product->hasMdVariants() || ($oViewConf->showSelectListsInList() && $product->getSelections(1)) || $product->getVariantList())}] *[{/if}]</strong>
  [{/if}]
[{/
block}] 

OXID CE 4.7.0 listitem_grid.tpl Ausschnitt

PHP Code:

[{block name="widget_product_listitem_grid_price_value"}]
  [{if 
$product->getFPrice()}]
    <
strong><span>
      [{if 
$product->isRangePrice()}]
        [{ 
oxmultilang ident="PRICE_FROM" }]
          [{if !
$product->isParentNotBuyable() }]
            [{ 
$product->getFMinPrice() }]
          [{else}]
            [{ 
$product->getFVarMinPrice() }]
          [{/if}]
        [{else}]
          [{if !
$product->isParentNotBuyable() }]
            [{ 
$product->getFPrice() }]
          [{else}]
            [{ 
$product->getFVarMinPrice() }]
          [{/if}]
        [{/if}]
      </
span> [{ $currency->sign}]
      [{if 
$oView->isVatIncluded() }]
        [{if !(
$product->hasMdVariants() || ($oViewConf->showSelectListsInList() && $product->getSelections(1)) || $product->getVariants())}] *[{/if}]</strong>
      [{/if}]
    [{/if}]
[{/
block}] 

Wo finde ich diese Änderung dokumentiert? Evtl. im Idealfall mit Beschreibung warum sich dies geändert hat.

Viele Grüße aus Berlin
indianer3c

Viewing all articles
Browse latest Browse all 6951

Trending Articles