📄 nochex.php
字号:
<?php
/*
$Id: nochex.php,v 1.1.1.1 2006/06/07 19:48:24 cvs Exp $
osCommerce, Open Source E-Commerce Solutions
http://www.oscommerce.com
Copyright (c) 2003 osCommerce
Released under the GNU General Public License
*/
class nochex {
var $code, $title;
// class constructor
function nochex() {
$this->code = 'nochex';
$this->title = 'NOCHEX';
$this->form_action_url = 'https://www.nochex.com/nochex.dll/checkout';
}
// class methods
function javascript_validation() {
return false;
}
function pre_confirmation_check() {
return false;
}
function confirmation() {
return false;
}
function process_button() {
global $db, $t;
$sqlconf = 'SELECT configuration_key, configuration_value from ! where module_key = ?';
$confdata = $db->getAll( $sqlconf, array( TABLE_CONFIGURATION, 'nochex' ) );
foreach( $confdata as $confitem ) {
$paymod_data[ $confitem['configuration_key'] ] = $confitem['configuration_value'];
}
$t->assign( 'email', $paymod_data['MODULE_PAYMENT_NOCHEX_ID'] );
$t->assign( 'test_mode', $paymod_data['MODULE_PAYMENT_NOCHEX_TESTMODE'] );
$t->assign('rendered_page', $t->fetch('nochex_checkout.tpl') );
}
function before_process() {
return false;
}
function after_process() {
return false;
}
function output_error() {
return false;
}
function check() {
if (!isset($this->_check)) {
$check_query = $db->query("select configuration_value from " . TABLE_CONFIGURATION . " where configuration_key = 'MODULE_PAYMENT_NOCHEX_STATUS'");
$this->_check = $check_query->numRows();
}
return $this->_check;
}
function install() {
global $db;
$is_there = $db->getOne('select configuration_value from ! where configuration_key = ?', array(TABLE_CONFIGURATION, 'MODULE_PAYMENT_NOCHEX_STATUS') );
if (!$is_there) {
$sqlupd = "insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, set_function, date_added, module_key) values ('Enable NOCHEX Module', 'MODULE_PAYMENT_NOCHEX_STATUS', 'True', 'Do you want to accept NOCHEX payments?', '6', '3', 'tep_cfg_select_option(array(\'True\', \'False\'), ', now(), 'nochex')";
$db->query( $sqlupd );
$sqlupd = "insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, set_function, date_added, module_key) values ('E-mail Address', 'MODULE_PAYMENT_NOCHEX_ID', 'test1@nochex.com', 'E-mail address of nochex account', '6', '3', 'tep_cfg_select_option(array(\'True\', \'False\'), ', now(), 'nochex')";
$db->query( $sqlupd );
$sqlupd = "insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, set_function, date_added, module_key) values ('Transaction Mode', 'MODULE_PAYMENT_NOCHEX_TESTMODE', 'test', 'Transaction mode used for processing orders (test/live)', '6', '0', 'tep_cfg_select_option(array(\'Test\', \'Production\'), ', now(), 'nochex')";
$db->query( $sqlupd );
}
}
function update( $configuration ) {
global $db;
while (list ($key, $val) = each ($configuration)) {
$sqlupd = "update ! set configuration_value = ? where configuration_key = ? ";
$db->query( $sqlupd, array( TABLE_CONFIGURATION, $val, $key ) );
}
}
function remove() {
global $db;
$sqlupd = "delete from " . TABLE_CONFIGURATION . " where configuration_key in ('" . implode("', '", $this->keys()) . "')";
$db->query( $sqlupd );
}
function keys() {
return array('MODULE_PAYMENT_NOCHEX_STATUS', 'MODULE_PAYMENT_NOCHEX_ID', 'MODULE_PAYMENT_NOCHEX_TESTMODE');
}
}
?>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -