Jump to content
xt:Commerce Community Forum

Templateausgabe plugin


Markus B

Recommended Posts

Hallo

ich verzweifle gerade an der Templateausgabe innerhalb des Plugins.

Soweit funktioniert bereits alles nur ich das Plugin scheint nicht auf das Template innerhalb des Plugins zuzugreifen?

Ich habe mir die komplette Funktion aus einem anderen Plugin nochmal kopiert und nur etwas angepasst. Trotzdem geht nichts. Momentan weiß ich nicht warum das nicht gehen sollte? :(


function _displayNEW($products_id='',$cart=false) {
global $xtPlugin, $xtLink, $db;

if (!$cart) {
$products_id = (int)$products_id;
if ($products_id=='') return false;
// $module_content = $this->getAutoCrossSellProductListing($products_id);
$module_content[ARTNR_VPE1] = $this->ARTNR_VPE1;
} else {
// $module_content = $this->getAutoCrossSellProductListingCart();
$module_content[ARTNR_VPE1] = $this->ARTNR_VPE1;
}
if (!$module_content) return false;
$tpl_data = array('_xt_ecoinform'=>$module_content);

$tmp_data = '';
$tpl = 'ecoinform.html';
$template = new Template();
$template->getTemplatePath($tpl, 'xt_ecoinform', '', 'plugin');

$tmp_data = $template->getTemplate('xt_ecoinform_smarty', $tpl, $tpl_data);

return $tmp_data;

}
[/PHP]

Link to comment
Share on other sites

Archived

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

×
  • Create New...