本文整理汇总了PHP中JViewLegacy::_assignPayment方法的典型用法代码示例。如果您正苦于以下问题:PHP JViewLegacy::_assignPayment方法的具体用法?PHP JViewLegacy::_assignPayment怎么用?PHP JViewLegacy::_assignPayment使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类JViewLegacy
的用法示例。
在下文中一共展示了JViewLegacy::_assignPayment方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: _assignPayment
/**
* Payment step
*/
protected function _assignPayment()
{
global $orderTotal;
// Redirect instead of displaying payment modules if any module are grefted on
Hook::exec('displayBeforePayment', array('module' => 'order.php?step=3'));
/* We may need to display an order summary */
$this->context->smarty->assign($this->context->cart->getSummaryDetails());
$this->context->smarty->assign(array('total_price' => (double) $orderTotal, 'taxes_enabled' => (int) Configuration::get('PS_TAX')));
$this->context->cart->checkedTOS = '1';
parent::_assignPayment();
}