本文整理汇总了PHP中payment::iframeAction方法的典型用法代码示例。如果您正苦于以下问题:PHP payment::iframeAction方法的具体用法?PHP payment::iframeAction怎么用?PHP payment::iframeAction使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类payment
的用法示例。
在下文中一共展示了payment::iframeAction方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: payment
xtc_redirect(xtc_href_link(FILENAME_CHECKOUT_SHIPPING, '', 'SSL'));
}
}
require DIR_WS_INCLUDES . 'header.php';
// load selected payment module
require DIR_WS_CLASSES . 'payment.php';
$payment_modules = new payment($_SESSION['payment']);
// load the selected shipping module
require DIR_WS_CLASSES . 'shipping.php';
$shipping_modules = new shipping($_SESSION['shipping']);
require DIR_WS_CLASSES . 'order_total.php';
require DIR_WS_CLASSES . 'order.php';
$order = new order();
$order_total_modules = new order_total();
$order_total_modules->process();
$iframe_url = $payment_modules->iframeAction();
if ($iframe_url == '') {
xtc_redirect(xtc_href_link(FILENAME_CHECKOUT_PAYMENT, '', 'SSL'));
}
$smarty->assign('iframe_url', $iframe_url);
/*
echo '<pre>';
print_r($_SESSION);
echo '</pre>';
*/
$smarty->assign('language', $_SESSION['language']);
$smarty->caching = 0;
$main_content = '<iframe src="' . $iframe_url . '" width="100%" height="750" name="_top" frameborder="0"></iframe>';
$smarty->assign('language', $_SESSION['language']);
$smarty->assign('main_content', $main_content);
$smarty->caching = 0;