claudio419 Posted October 21, 2015 Share Posted October 21, 2015 Hallo Leute, Ich brauche eine PHP-funktion in ein tpl sehen, etwas ähnlich als: {$link->getPageLink('cart',false, NULL, "add=1&id_product={$product.id_product|intval}&token={$static_token}", false)|escape:'html':'UTF-8') aber bist jetzt hatte ich Pech. 1) Ich hab die Funktion getCategoryParent() in Product.php geschrieben. public function getCategoryParent(){ return 'Hallo aus Product.php'; } 2) In product-list.tpl hab ich geschrieben: {$product->getCategoryParent()} aber ich habe die folgende Fehler: Fatal error: Call to a member function getCategoryParent() on array in /Applications/XAMPP/xamppfiles/htdocs/......................./cache/smarty/compile/75/b5/0c/75b50c4c7f0c97cc4699dca3b7bd4363950e5044.file.product-list.tpl.cache.php on line 190 Kann jemand das Fehler finden? Viele Danke Link to comment Share on other sites More sharing options...
claudio419 Posted October 21, 2015 Author Share Posted October 21, 2015 Gelöst!!! Ich sollte ein static-funktion schreiben. public static function getCategoryParent($product_id){ return 'Hallo aus Product.php'; } und in product-list.tpl {Product::getCategoryParent((int)$product.id_product)} Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now