Jump to content
xt:Commerce Community Forum

Smarty Variablen..


Lukiluko

Recommended Posts

Hallo zusammen!

Ich habe mal eine Frage die bestimmt leicht beantwortet werden kann ;-)

Also: Ich habe eine Auswahlliste per smarty assign erstellt und die dazugehörige .tpl Datei. Möchte diese in den Produktinformationen einbinden.

Wie kann ich die tpl Datei positionieren (im produktinfo Content) ?

Wenn ich die tpl Datei per include in die product.html einbinde dann werden die Werte der selectbox nicht angezeigt! Warum?

auszug product.php

include_once('meinpfad/xtFramework/library/smarty/Smarty.class.php');

$smarty = new Smarty;

$smarty->assign("titel", "Smarty-Test");

$smarty->assign('cust_ids', array(1000,1001,1002,1003));

$smarty->assign('cust_names', array(

'blabla.',

'blabla',

'blabla',

'blabla'));

$smarty->assign('customer_id', 1000);

$smarty->display('meinpfad/test.tpl');

test.tpl

<select name="customer_id">

{html_options values=$cust_ids output=$cust_names selected=$customer_id}

</select>

So wird die Auswahlliste in der Produktinfo oben links angezeigt und befüllt.

Include ich die test.tpl in der product.html wird die box leer angezeigt ohne Inhalt.

Würde mich über Eure Hilfe freuen!

Danke!

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
  • Create New...