本文整理汇总了PHP中payment::confirmation方法的典型用法代码示例。如果您正苦于以下问题:PHP payment::confirmation方法的具体用法?PHP payment::confirmation怎么用?PHP payment::confirmation使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类payment
的用法示例。
在下文中一共展示了payment::confirmation方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: htmlspecialchars
'meta_description' => htmlspecialchars($oos_meta_description),
'meta_keywords' => htmlspecialchars($oos_meta_keywords),
'oos_breadcrumb' => $oBreadcrumb->trail(BREADCRUMB_SEPARATOR),
'oos_heading_title' => $aLang['heading_title'],
'oos_heading_image' => 'confirmation.gif'
)
);
if (MODULE_ORDER_TOTAL_INSTALLED) {
$oOrderTotalModules->process();
$order_total_output = $oOrderTotalModules->output();
$oSmarty->assign('order_total_output', $order_total_output);
}
if (is_array($oPaymentModules->modules)) {
if ($confirmation = $oPaymentModules->confirmation()) {
$oSmarty->assign('confirmation', $confirmation);
}
}
if (is_array($oPaymentModules->modules)) {
$oPaymentModules_process_button = $oPaymentModules->process_button();
}
$oSmarty->assign('payment_modules_process_button', $oPaymentModules_process_button);
if (isset($$_SESSION['payment']->form_action_url)) {
$form_action_url = $$_SESSION['payment']->form_action_url;
} else {
$form_action_url = oos_href_link($aPages['checkout_process'], '', 'SSL');
示例2:
<td width="70%" valign="top" align="right"><table border="0" cellspacing="0" cellpadding="2">
<?php
if (MODULE_ORDER_TOTAL_INSTALLED) {
echo $order_total_modules->output();
}
?>
</table></td>
</tr>
</table>
</div>
<?php
if (is_array($payment_modules->modules)) {
if ($confirmation = $payment_modules->confirmation()) {
?>
<h2><?php
echo HEADING_PAYMENT_INFORMATION;
?>
</h2>
<div class="contentText" style="margin-left:5px">
<table border="0" cellspacing="0" cellpadding="2">
<tr>
<td colspan="4"><?php
echo $confirmation['title'];
?>
</td>
</tr>