當前位置: 首頁>>代碼示例>>PHP>>正文


PHP payment::iframeAction方法代碼示例

本文整理匯總了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;
開發者ID:shophelfer,項目名稱:shophelfer.com-shop,代碼行數:31,代碼來源:checkout_payment_iframe.php


注:本文中的payment::iframeAction方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。