Files
kupshop/class/smarty_plugins/function.get_payment_method.php
2025-08-02 16:30:27 +02:00

27 lines
582 B
PHP

<?php
/*
* Smarty plugin
* -------------------------------------------------------------
* Type: function
* Name: get_payment_method
* Purpose: get a class representing payment method
* -------------------------------------------------------------
*/
function smarty_function_get_payment_method($params, &$smarty)
{
$name = false;
extract($params);
$payment = Payment::getClass($name);
if (!$payment) {
echo "Neexistující platebni metoda '{$name}'";
}
if (!empty($assign)) {
$smarty->assign($assign, $payment);
}
}