Hercules Posted January 30, 2004 Report Share Posted January 30, 2004 Hallo Forum, vielleicht kann mir hier jemand bei meinem Smarty-PHP Problem helfen? Ich binde in div. Smarty-Templates ?ber {php} einigen PHP-Code ein, leider weiss ich nicht wie ich innerhalb dieses Codes eine Smartyvariable ala {$var} verwenden kann? geht das ?berhaupt? Vielen Dank Link to comment Share on other sites More sharing options...
mzanier Posted January 30, 2004 Report Share Posted January 30, 2004 innerhalb von {php} kann man auf die variablen ganz ( $var )zugreifen. Link to comment Share on other sites More sharing options...
Hercules Posted January 30, 2004 Author Report Share Posted January 30, 2004 Hmm.... funzt net :cry: Beispiel: {php} $var = ( $module_data.PRODUCTS_PRICE ); echo $var; {/php} Hast Du eine Idee? Link to comment Share on other sites More sharing options...
mzanier Posted January 30, 2004 Report Share Posted January 30, 2004 jo ohne klammern....... Link to comment Share on other sites More sharing options...
Hercules Posted January 30, 2004 Author Report Share Posted January 30, 2004 Sorry wenn ich noch mal nerve, aber {php} $var = $module_data.PRODUCTS_PRICE; echo $var; {/php} gibt nur PRODUCTS_PRICE raus, die Variable wird nicht ausgelesen. Ich m?chte jedoch innnerhalb der PHP-Tags mit dem Preis arbeiten :grml: Link to comment Share on other sites More sharing options...
mzanier Posted January 30, 2004 Report Share Posted January 30, 2004 ja das geht nicht, da im variablen namen ein punkt enthalten ist. ob man das irgendwie umgehen kann, findest du sicherlich in den smarty foren. smarty.php.net Link to comment Share on other sites More sharing options...
Hubi Posted January 30, 2004 Report Share Posted January 30, 2004 Nur mal sone Idee, probier mal $module_data['PRODUCTS_PRICE'] Link to comment Share on other sites More sharing options...
Hercules Posted January 30, 2004 Author Report Share Posted January 30, 2004 OK Habs *freu* {assign var=MANFRED value=$module_data.PRODUCTS_PRICE} {php} echo $this->get_template_vars('MANFRED'); {/php} Link to comment Share on other sites More sharing options...
mbdesign Posted October 12, 2009 Report Share Posted October 12, 2009 Bei mir funktioniert das leider nicht! Hat jemand nich mal ein Beispiel um eine Smartyvariable die in der products_info zur verfügung steht in ein php script zu verwenden!?? Danke Link to comment Share on other sites More sharing options...
jav666 Posted June 18, 2012 Report Share Posted June 18, 2012 via google gefunden. und mit gänsefüssen gehts: {assign var="MANFRED" value=$module_data.PRODUCTS_PRICE} {php} echo $this->get_template_vars('MANFRED'); {/php} Link to comment Share on other sites More sharing options...
jav666 Posted June 18, 2012 Report Share Posted June 18, 2012 bzw. um z.B. auf {$item_data.PRICE} zuzugreifen ohne assign {php} $t = $this->get_template_vars('item_data'); echo $t["PRICE"]."<br />"; {/php} Link to comment Share on other sites More sharing options...
josch76 Posted March 28, 2014 Report Share Posted March 28, 2014 Hallo, und wenn ich das innerhalb einer php Datei (z.B. css.php) machen will? Da wird mir bei sowas $t = $this->get_template_vars('top_navigation');[/PHP] eine leere Seite ausgegeben. Gruß Link to comment Share on other sites More sharing options...
Alex@4tfm Posted March 28, 2014 Report Share Posted March 28, 2014 und wenn ich das innerhalb einer php Datei (z.B. css.php) machen will? du meinst einen include oder was genau? Link to comment Share on other sites More sharing options...
josch76 Posted March 28, 2014 Report Share Posted March 28, 2014 Ich möchte in der css.php auf Template Variablen zugreifen. Genauer gesagt auf die {top_navigation}. Link to comment Share on other sites More sharing options...
Alex@4tfm Posted March 29, 2014 Report Share Posted March 29, 2014 Ich möchte in der css.php auf Template Variablen zugreifen. Genauer gesagt auf die {top_navigation}. Ich würde da eher den Weg gehen die Daten nochmal abzufragen: $category->getCategoryBox(0,false,0,'top_category')[/PHP] Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.