本文整理汇总了PHP中oos_get_modules函数的典型用法代码示例。如果您正苦于以下问题:PHP oos_get_modules函数的具体用法?PHP oos_get_modules怎么用?PHP oos_get_modules使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了oos_get_modules函数的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: create_plugin_instance
function create_plugin_instance()
{
$aFilename = oos_get_filename();
$aModules = oos_get_modules();
if ($_GET['file'] != $aFilename['info_down_for_maintenance']) {
MyOOS_CoreApi::redirect(oos_href_link($aModules['info'], $aFilename['info_down_for_maintenance'], '', 'NONSSL', true, false));
}
return true;
}
示例2: create_plugin_instance
function create_plugin_instance()
{
if (!isset($_SESSION['customer_id'])) {
$aFilename = oos_get_filename();
$aModules = oos_get_modules();
if ($_GET['mp'] != $aModules['user']) {
$_SESSION['navigation']->set_snapshot();
oos_redirect(oos_href_link($aModules['user'], $aFilename['login'], '', 'SSL'));
}
}
return true;
}
示例3: create_plugin_instance
function create_plugin_instance()
{
$aFilename = oos_get_filename();
$aModules = oos_get_modules();
if ($_GET['file'] != $aFilename['login'] && !isset($_SESSION['customer_id'])) {
$cookie_url_array = parse_url((ENABLE_SSL == true ? OOS_HTTPS_SERVER : OOS_HTTP_SERVER) . substr(OOS_SHOP, 0, -1));
$cookie_path = $cookie_url_array['path'];
if (isset($_COOKIE['email_address']) && isset($_COOKIE['password'])) {
// Get database information
$dbconn =& oosDBGetConn();
$oostable =& oosDBGetTables();
$customerstable = $oostable['customers'];
$sql = "SELECT customers_id, customers_gender, customers_firstname, customers_lastname,\n customers_password, customers_wishlist_link_id, customers_language,\n customers_vat_id_status, customers_email_address, customers_default_address_id,\n customers_max_order\n FROM {$customerstable}\n WHERE customers_login = '1'\n AND customers_email_address = '" . oos_db_input($_COOKIE['email_address']) . "'";
$check_customer_result = $dbconn->Execute($sql);
if ($check_customer_result->RecordCount()) {
$check_customer = $check_customer_result->fields;
if (oos_validate_password($_COOKIE['password'], $check_customer['customers_password'])) {
$address_booktable = $oostable['address_book'];
$sql = "SELECT entry_country_id, entry_zone_id\n FROM {$address_booktable}\n WHERE customers_id = '" . $check_customer['customers_id'] . "'\n AND address_book_id = '1'";
$check_country = $dbconn->GetRow($sql);
if ($check_customer['customers_language'] == '') {
$sLanguage = oos_var_prep_for_os($_SESSION['language']);
$customerstable = $oostable['customers'];
$dbconn->Execute("UPDATE {$customerstable}\n SET customers_language = '" . oos_db_input($sLanguage) . "'\n WHERE customers_id = '" . intval($check_customer['customers_id']) . "'");
}
$_SESSION['customer_wishlist_link_id'] = $check_customer['customers_wishlist_link_id'];
$_SESSION['customer_id'] = $check_customer['customers_id'];
$_SESSION['customer_default_address_id'] = $check_customer['customers_default_address_id'];
if (ACCOUNT_GENDER == '1') {
$_SESSION['customer_gender'] = $check_customer['customers_gender'];
}
$_SESSION['customer_first_name'] = $check_customer['customers_firstname'];
$_SESSION['customer_lastname'] = $check_customer['customers_lastname'];
$_SESSION['customer_max_order'] = $check_customer['customers_max_order'];
$_SESSION['customer_country_id'] = $check_country['entry_country_id'];
$_SESSION['customer_zone_id'] = $check_country['entry_zone_id'];
if (ACCOUNT_VAT_ID == '1') {
$_SESSION['customers_vat_id_status'] = $check_customer['customers_vat_id_status'];
}
$_SESSION['member']->restore_group();
setcookie('email_address', $email_address, time() + 365 * 24 * 3600, $cookie_path, '', getenv('HTTPS') == 'on' ? 1 : 0);
setcookie('password', $check_customer['customers_password'], time() + 365 * 24 * 3600, $cookie_path, '', getenv('HTTPS') == 'on' ? 1 : 0);
$customers_infotable = $oostable['customers_info'];
$dbconn->Execute("UPDATE {$customers_infotable}\n SET customers_info_date_of_last_logon = '" . date("Y-m-d H:i:s", time()) . "',\n customers_info_number_of_logons = customers_info_number_of_logons+1\n WHERE customers_info_id = '" . intval($_SESSION['customer_id']) . "'");
$_SESSION['cart']->restore_contents();
// restore cart contents
}
}
}
}
return true;
}
示例4: smarty_function_categories_link
/**
* Smarty {categories_link} function plugin
*
* Type: function<br>
* Name: categories_link<br>
* Date: Oct 27, 2008<br>
* Purpose: URL for the categorie info<br>
* Input:<br>
* - categories
*
* Examples: {categories_link categories=17}
* Output: http:// ... index.php?mp=mp&file=shop&categories=17
* @author r23 <info@r23.de>
* @version 1.0
* @param array
* @param Smarty
* @return string
* @uses smarty_function_html_href_link()
*/
function smarty_function_categories_link($params, &$smarty)
{
require_once $smarty->_get_plugin_filepath('function', 'html_href_link');
$aModules = oos_get_modules();
$aFilename = oos_get_filename();
$result = array();
$link_params = array();
$link_params = array('modul' => $aModules['main'], 'file' => $aFilename['shop']);
if (is_array($params)) {
$result = array_merge($link_params, $params);
} else {
$smarty->trigger_error("categories_link: extra attribute '{$params}' must an array", E_USER_NOTICE);
}
return smarty_function_html_href_link($result, $smarty);
}
示例5: oos_secure_input
/**
* Protects better diverse attempts of Cross-Site Scripting
* attacks, thanks to webmedic, Timax, larsneo.
*
* Lets validate the current php version and set globals
* accordingly.
* Do not change this value unless you know what you are
* doing you have been warned!
*/
function oos_secure_input()
{
$aFilename = oos_get_filename();
$aModules = oos_get_modules();
# Cross-Site Scripting attack defense - Sent by larsneo
# some syntax checking against injected javascript
# extended by Neo
/**
* Lets now sanitize the GET vars
*/
if (count($_GET) > 0) {
foreach ($_GET as $secvalue) {
if (!is_array($secvalue)) {
if (eregi("<[^>]*script*\"?[^>]*>", $secvalue) || eregi(".*[[:space:]](or|and)[[:space:]].*(=|like).*", $secvalue) || eregi("<[^>]*object*\"?[^>]*>", $secvalue) || eregi("<[^>]*iframe*\"?[^>]*>", $secvalue) || eregi("<[^>]*applet*\"?[^>]*>", $secvalue) || eregi("<[^>]*meta*\"?[^>]*>", $secvalue) || eregi("<[^>]*style*\"?[^>]*>", $secvalue) || eregi("<[^>]*form*\"?[^>]*>", $secvalue) || eregi("<[^>]*window.*\"?[^>]*>", $secvalue) || eregi("<[^>]*alert*\"?[^>]*>", $secvalue) || eregi("<[^>]*img*\"?[^>]*>", $secvalue) || eregi("<[^>]*document.*\"?[^>]*>", $secvalue) || eregi("<[^>]*cookie*\"?[^>]*>", $secvalue) || eregi("\"", $secvalue)) {
MyOOS_CoreApi::redirect(oos_href_link($aModules['main'], $aFilename['main']));
}
}
}
}
/**
* Lets now sanitize the POST vars
*/
if (count($_POST) > 0) {
foreach ($_POST as $secvalue) {
if (!is_array($secvalue)) {
if (eregi("<[^>]*script*\"?[^>]*>", $secvalue) || eregi("<[^>]*object*\"?[^>]*>", $secvalue) || eregi("<[^>]*iframe*\"?[^>]*>", $secvalue) || eregi("<[^>]*applet*\"?[^>]*>", $secvalue) || eregi("<[^>]*window.*\"?[^>]*>", $secvalue) || eregi("<[^>]*alert*\"?[^>]*>", $secvalue) || eregi("<[^>]*document.*\"?[^>]*>", $secvalue) || eregi("<[^>]*cookie*\"?[^>]*>", $secvalue) || eregi("<[^>]*meta*\"?[^>]*>", $secvalue)) {
MyOOS_CoreApi::redirect(oos_href_link($aModules['main'], $aFilename['main']));
}
}
}
}
/**
* Lets now sanitize the COOKIE vars
*/
if (count($_COOKIE) > 0) {
foreach ($_COOKIE as $secvalue) {
if (!is_array($secvalue)) {
if (eregi("<[^>]*script*\"?[^>]*>", $secvalue) || eregi(".*[[:space:]](or|and)[[:space:]].*(=|like).*", $secvalue) || eregi("<[^>]*object*\"?[^>]*>", $secvalue) || eregi("<[^>]*iframe*\"?[^>]*>", $secvalue) || eregi("<[^>]*applet*\"?[^>]*>", $secvalue) || eregi("<[^>]*meta*\"?[^>]*>", $secvalue) || eregi("<[^>]*style*\"?[^>]*>", $secvalue) || eregi("<[^>]*form*\"?[^>]*>", $secvalue) || eregi("<[^>]*window.*\"?[^>]*>", $secvalue) || eregi("<[^>]*alert*\"?[^>]*>", $secvalue) || eregi("<[^>]*document.*\"?[^>]*>", $secvalue) || eregi("<[^>]*cookie*\"?[^>]*>", $secvalue) || eregi("<[^>]*img*\"?[^>]*>", $secvalue)) {
MyOOS_CoreApi::redirect(oos_href_link($aModules['main'], $aFilename['main']));
}
}
}
}
}
示例6: create_plugin_instance
function create_plugin_instance()
{
global $oLang, $aLang;
$dbconn =& oosDBGetConn();
$oostable =& oosDBGetTables();
$aFilename = oos_get_filename();
$aModules = oos_get_modules();
if (!isset($_SESSION['language']) || isset($_GET['language'])) {
MyOOS_CoreApi::requireOnce('classes/class_language.php');
$oLang = new language();
if (isset($_GET['language']) && oos_is_not_null($_GET['language'])) {
$oLang->set($_GET['language']);
} else {
$oLang->get_browser_language();
}
}
$sLanguage = oos_var_prep_for_os($_SESSION['language']);
include 'includes/languages/' . $sLanguage . '.php';
return true;
}
示例7: oos_customer_greeting
/**
* Return a customer greeting
*
* @return string
*/
function oos_customer_greeting()
{
global $aLang;
$aFilename = oos_get_filename();
$aModules = oos_get_modules();
$personal_text = '';
if (isset($_SESSION['customer_lastname']) && ACCOUNT_GENDER == '1') {
if ($_SESSION['customer_gender'] == 'm') {
$personal_text = $aLang['male_address'] . ' ' . $_SESSION['customer_lastname'];
} else {
$personal_text = $aLang['female_address'] . ' ' . $_SESSION['customer_lastname'];
}
}
if (isset($_SESSION['customer_lastname']) && isset($_SESSION['customer_id'])) {
$sGreeting = sprintf($aLang['text_greeting_personal'], $personal_text, oos_href_link($aModules['products'], $aFilename['products_new']));
} else {
$sGreeting = '';
// $sGreeting = sprintf($aLang['text_greeting_guest'], oos_href_link($aModules['user'], $aFilename['login'], '', 'SSL'), oos_href_link($aModules['user'], $aFilename['create_account'], '', 'SSL'));
}
return $sGreeting;
}
示例8: process_button
function process_button()
{
global $oOrder, $oCurrencies;
if (MODULE_PAYMENT_MONEYBOOKERS_LANGUAGE == 'Selected Language') {
$my_language = 'EN';
} else {
$my_language = MODULE_PAYMENT_MONEYBOOKERS_LANGUAGE;
}
if (MODULE_PAYMENT_MONEYBOOKERS_CURRENCY == 'Selected Currency') {
$my_currency = $_SESSION['currency'];
} else {
$my_currency = substr(MODULE_PAYMENT_MONEYBOOKERS_CURRENCY, 5);
}
if (!in_array($my_currency, array('EUR', 'USD', 'GBP', 'HKD', 'SGD', 'JPY', 'CAD', 'AUD', 'CHF', 'DKK', 'SEK', 'NOK', 'ILS', 'MYR', 'NZD', 'TWD', 'THB', 'CZK', 'HUF', 'SKK', 'ISK', 'INR'))) {
$my_currency = 'EUR';
}
$aFilename = oos_get_filename();
$aModules = oos_get_modules();
$process_button_string = oos_draw_hidden_field('pay_to_email', MODULE_PAYMENT_MONEYBOOKERS_ID) . oos_draw_hidden_field('language', $my_language) . oos_draw_hidden_field('amount', number_format($oOrder->info['total'] * $oCurrencies->get_value($my_currency), $oCurrencies->get_decimal_places($my_currency))) . oos_draw_hidden_field('currency', $my_currency) . oos_draw_hidden_field('detail1_description', STORE_NAME) . oos_draw_hidden_field('detail1_text', 'Order - ' . date('d. M Y - H:i')) . oos_draw_hidden_field('firstname', $oOrder->billing['firstname']) . oos_draw_hidden_field('lastname', $oOrder->billing['lastname']) . oos_draw_hidden_field('address', $oOrder->billing['street_address']) . oos_draw_hidden_field('postal_code', $oOrder->billing['postcode']) . oos_draw_hidden_field('city', $oOrder->billing['city']) . oos_draw_hidden_field('country', $oOrder->billing['country']['moneybookers']) . oos_draw_hidden_field('pay_from_email', $oOrder->customer['email_address']) . oos_draw_hidden_field('return', oos_href_link($aModules['checkout'], $aFilename['checkout_process'], '', 'SSL')) . oos_draw_hidden_field('cancel_return', oos_href_link($aModules['checkout'], $aFilename['checkout_payment'], '', 'SSL'));
return $process_button_string;
}
示例9: smarty_function_css_back_button
/**
* Smarty {css_back_button} function plugin
*
* Type: function
* Name: css_back_button
* @Version: $Revision: 1.1 $ - changed by $Author: r23 $ on $Date: 2008/01/09 22:03:20 $
*/
function smarty_function_css_back_button($params, &$smarty)
{
global $oEvent, $spider_kill_sid;
MyOOS_CoreApi::requireOnce('lib/smarty/libs/plugins/shared.escape_special_chars.php');
$title = '';
$color = 'btnR green';
foreach ($params as $_key => $_val) {
switch ($_key) {
case 'title':
${$_key} = (string) $_val;
break;
case 'color':
${$_key} = (string) $_val;
break;
default:
break;
}
}
$aModules = oos_get_modules();
$aFilename = oos_get_filename();
if (count($_SESSION['navigation']->path) - 2 > 0) {
$back = count($_SESSION['navigation']->path) - 2;
$link = oos_href_link($_SESSION['navigation']->path[$back]['modules'], $_SESSION['navigation']->path[$back]['file'], $_SESSION['navigation']->path[$back]['get'] . '&history_back=true', $_SESSION['navigation']->path[$back]['mode']);
} else {
if (strstr(HTTP_SERVER, $_SERVER['HTTP_REFERER'])) {
$link = $_SERVER['HTTP_REFERER'];
} else {
$link = oos_href_link($aModules['main'], $aFilename['main']);
}
}
while (substr($link, -5) == '&' || substr($link, -1) == '?') {
if (substr($link, -1) == '?') {
$link = substr($link, 0, -1);
} else {
$link = substr($link, 0, -5);
}
}
$title = decode($title);
return '<a href="' . $link . '" title="' . $title . '" class="' . $color . '">' . $title . '</a>';
}
示例10: smarty_function_oos_back_link
function smarty_function_oos_back_link($params, &$smarty)
{
$aModules = oos_get_modules();
$aFilename = oos_get_filename();
if (count($_SESSION['navigation']->path) - 2 > 0) {
$back = count($_SESSION['navigation']->path) - 2;
$link = oos_href_link($_SESSION['navigation']->path[$back]['modules'], $_SESSION['navigation']->path[$back]['file'], $_SESSION['navigation']->path[$back]['get'] . '&history_back=true', $_SESSION['navigation']->path[$back]['mode']);
} else {
if (isset($_SERVER['HTTP_REFERER']) && strstr(HTTP_SERVER, $_SERVER['HTTP_REFERER'])) {
$link = $_SERVER['HTTP_REFERER'];
} else {
$link = oos_href_link($aModules['main'], $aFilename['main']);
}
}
while (substr($link, -5) == '&' || substr($link, -1) == '?') {
if (substr($link, -1) == '?') {
$link = substr($link, 0, -1);
} else {
$link = substr($link, 0, -5);
}
}
return $link;
}
示例11: create_plugin_instance
function create_plugin_instance()
{
global $oBreadcrumb, $aLang, $aCategoryPath;
$dbconn =& oosDBGetConn();
$oostable =& oosDBGetTables();
$aFilename = oos_get_filename();
$aModules = oos_get_modules();
// include the breadcrumb class and start the breadcrumb trail
MyOOS_CoreApi::requireOnce('classes/class_breadcrumb.php');
$oBreadcrumb = new breadcrumb();
$oBreadcrumb->add($aLang['header_title_top'], oos_href_link($aModules['main'], $aFilename['main']));
// add category names or the manufacturer name to the breadcrumb trail
if (isset($aCategoryPath) && count($aCategoryPath) > 0) {
$nLanguageID = isset($_SESSION['language_id']) ? $_SESSION['language_id'] + 0 : 1;
for ($i = 0, $n = count($aCategoryPath); $i < $n; $i++) {
$categories_descriptiontable = $oostable['categories_description'];
$categories_sql = "SELECT categories_name\n FROM {$categories_descriptiontable}\n WHERE categories_id = '" . intval($aCategoryPath[$i]) . "'\n AND categories_languages_id = '" . intval($nLanguageID) . "'";
$categories = $dbconn->Execute($categories_sql);
if ($categories->RecordCount() > 0) {
$oBreadcrumb->add($categories->fields['categories_name'], oos_href_link($aModules['main'], $aFilename['shop'], 'categories=' . implode('_', array_slice($aCategoryPath, 0, $i + 1))));
} else {
break;
}
}
} elseif (isset($_GET['manufacturers_id']) && is_numeric($_GET['manufacturers_id'])) {
$manufacturers_id = intval($_GET['manufacturers_id']);
$manufacturerstable = $oostable['manufacturers'];
$manufacturers_sql = "SELECT manufacturers_name\n FROM {$manufacturerstable}\n WHERE manufacturers_id = '" . intval($manufacturers_id) . "'";
$manufacturers = $dbconn->Execute($manufacturers_sql);
if ($manufacturers->RecordCount() > 0) {
$oBreadcrumb->add($aLang['header_title_catalog'], oos_href_link($aModules['main'], $aFilename['shop']));
$oBreadcrumb->add($manufacturers->fields['manufacturers_name'], oos_href_link($aModules['main'], $aFilename['shop'], 'manufacturers_id=' . $_GET['manufacturers_id']));
}
}
return true;
}
示例12: smarty_function_tooltip
/**
* Smarty {tooltip} function plugin
*
* Type: function<br>
* Name: tooltip<br>
* Purpose: make text pop up in windows via wz_tooltip
* Author: r23 <info at r23 dot de>
* @param array
* @param Smarty
* @return string
*/
function smarty_function_tooltip($params, &$smarty)
{
require_once $smarty->_get_plugin_filepath('function', 'html_href_link');
$aModules = oos_get_modules();
$aFilename = oos_get_filename();
$basedir = OOS_IMAGES;
$height = SMALL_IMAGE_HEIGHT;
$width = SMALL_IMAGE_WIDTH;
$align = 'right';
$image = '';
$sLanguage = oos_var_prep_for_os($_SESSION['language']);
foreach ($params as $_key => $_val) {
switch ($_key) {
case 'image':
case 'height':
case 'width':
case 'basedir':
case 'align':
case 'products_description':
case 'products_id':
${$_key} = (string) $_val;
break;
default:
$smarty->trigger_error("[tooltip] unknown parameter {$_key}", E_USER_WARNING);
break;
}
}
$image = $basedir . $image;
if ((empty($image) || $image == OOS_IMAGES) && IMAGE_REQUIRED == '0') {
return false;
}
if ((empty($image) || $image == OOS_IMAGES) && IMAGE_REQUIRED == '1') {
if (is_readable(OOS_ABSOLUTE_PATH . OOS_IMAGES . 'no_picture_' . $sLanguage . '.gif')) {
$image = OOS_IMAGES . 'no_picture_' . $sLanguage . '.gif';
} elseif (is_readable(OOS_ABSOLUTE_PATH . OOS_IMAGES . 'no_picture.gif')) {
$image = OOS_IMAGES . 'no_picture.gif';
} else {
return false;
}
$image_size = @getimagesize($image);
$width = $image_size[0];
$height = $image_size[1];
} elseif (CONFIG_CALCULATE_IMAGE_SIZE == '1' && (empty($width) || empty($height))) {
if (is_readable(OOS_ABSOLUTE_PATH . $image)) {
$image_size = @getimagesize($image);
if (empty($width) && oos_is_not_null($height)) {
$ratio = $height / $image_size[1];
$width = $image_size[0] * $ratio;
} elseif (oos_is_not_null($width) && empty($height)) {
$ratio = $width / $image_size[0];
$height = $image_size[1] * $ratio;
} elseif (empty($width) && empty($height)) {
$width = $image_size[0];
$height = $image_size[1];
}
} elseif (IMAGE_REQUIRED == '1') {
if (is_readable(OOS_ABSOLUTE_PATH . OOS_IMAGES . 'no_picture_' . $sLanguage . '.gif')) {
$image = OOS_IMAGES . 'no_picture_' . $sLanguage . '.gif';
} elseif (is_readable(OOS_ABSOLUTE_PATH . OOS_IMAGES . 'no_picture.gif')) {
$image = OOS_IMAGES . 'no_picture.gif';
} else {
return false;
}
$image_size = @getimagesize($image);
$width = $image_size[0];
$height = $image_size[1];
} else {
return false;
}
}
$image = '<img src=' . $image . ' align=' . $align . ' width=' . $width . ' height=' . $height . '>';
$link_params = array();
$link_params = array('modul' => $aModules['products'], 'file' => $aFilename['product_info'], 'products_id' => $params['products_id']);
$link = smarty_function_html_href_link($link_params, $smarty);
$products_description = strip_tags($products_description);
$products_description = preg_replace(array("!'!", "![\r\n]!"), array("\\'", '\\r'), $products_description);
$products_description = str_replace('"', ' ', $products_description);
return '<a onmouseover="Tip(\'' . $image . ' ' . $products_description . '\', WIDTH, 200)" onmouseout="UnTip()" href="' . $link . '" target="_top">';
}
示例13: before_process
function before_process()
{
global $aLang;
$aFilename = oos_get_filename();
$aModules = oos_get_modules();
if ($_POST['x_response_code'] == '1') {
return;
}
if ($_POST['x_response_code'] == '2') {
$_SESSION['error_message'] = $aLang['module_payment_authorizenet_text_declined_message'];
MyOOS_CoreApi::redirect(oos_href_link($aModules['checkout'], $aFilename['checkout_payment'], '', 'SSL', true, false));
}
// Code 3 is an error - but anything else is an error too (IMHO)
$_SESSION['error_message'] = $aLang['module_payment_authorizenet_text_error_message'];
MyOOS_CoreApi::redirect(oos_href_link($aModules['checkout'], $aFilename['checkout_payment'], '', 'SSL', true, false));
}
示例14: redirect
/**
* Redirect to another page or site
*
* @param string $sUrl
* @return string
*/
function redirect($sUrl)
{
if (strpos($sUrl, "\n") !== false || strpos($sUrl, "\r") !== false) {
$aFilename = oos_get_filename();
$aModules = oos_get_modules();
$sUrl = oos_href_link($aModules['main'], $aFilename['main'], null, 'NONSSL', false);
}
if (strpos($sUrl, '&') !== false) {
$sUrl = str_replace('&', '&', $sUrl);
}
header('Location: ' . $sUrl);
oos_exit();
}
示例15: pre_confirmation_check
function pre_confirmation_check()
{
global $banktransfer_number, $banktransfer_blz, $aLang;
if ($_POST['banktransfer_fax'] == false) {
include 'includes/classes/class_banktransfer_validation.php';
$banktransfer_validation = new AccountCheck();
$banktransfer_result = $banktransfer_validation->CheckAccount($banktransfer_number, $banktransfer_blz);
if ($banktransfer_result > 0 || $_POST['banktransfer_owner'] == '') {
if ($_POST['banktransfer_owner'] == '') {
$error = 'Name des Kontoinhabers fehlt!';
$recheckok = '';
} else {
switch ($banktransfer_result) {
case 1:
// number & blz not ok
$error = $aLang['module_payment_banktransfer_text_bank_error_1'];
$recheckok = '1';
break;
case 5:
// BLZ not found
$error = $aLang['module_payment_banktransfer_text_bank_error_5'];
$recheckok = '1';
break;
case 8:
// no blz entered
$error = $aLang['module_payment_banktransfer_text_bank_error_8'];
$recheckok = '';
break;
case 9:
// no number entered
$error = $aLang['module_payment_banktransfer_text_bank_error_9'];
$recheckok = '';
break;
default:
$error = $aLang['module_payment_banktransfer_text_bank_error_4'];
$recheckok = '1';
break;
}
}
if ($_POST['recheckok'] != '1') {
$payment_error_return = 'payment_error=' . $this->code . '&error=' . urlencode($error) . '&banktransfer_owner=' . urlencode($_POST['banktransfer_owner']) . '&banktransfer_number=' . urlencode($_POST['banktransfer_number']) . '&banktransfer_blz=' . urlencode($_POST['banktransfer_blz']) . '&banktransfer_bankname=' . urlencode($_POST['banktransfer_bankname']) . '&recheckok=' . $recheckok;
$aFilename = oos_get_filename();
$aModules = oos_get_modules();
MyOOS_CoreApi::redirect(oos_href_link($aModules['checkout'], $aFilename['checkout_payment'], $payment_error_return, 'SSL', true, false));
}
}
$this->banktransfer_owner = oos_prepare_input($_POST['banktransfer_owner']);
$this->banktransfer_blz = oos_prepare_input($_POST['banktransfer_blz']);
$this->banktransfer_number = oos_prepare_input($_POST['banktransfer_number']);
$this->banktransfer_prz = $banktransfer_validation->PRZ;
$this->banktransfer_status = $banktransfer_result;
if ($banktransfer_validation->Bankname != '') {
$this->banktransfer_bankname = $banktransfer_validation->Bankname;
} else {
$this->banktransfer_bankname = oos_prepare_input($_POST['banktransfer_bankname']);
}
}
}