![]() |
|
? |
![]() PHP FAQ PHP Articles PHP Help Bulletin Board PHP Manual (NEW!) First Time PHP'ers Help with programming Sql assignment help PHP Homework Help C# Help
|
? |
|
|||||||||||||||||||||||||||||||||||
?Reply To This Message | ||||||||||||||||||||||||||||||||||||||
?Your Name: | ||||||||||||||||||||||||||||||||||||||
?Your Email: | ||||||||||||||||||||||||||||||||||||||
?Subject: | ||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||
Email replies to this thread, to the address above. | ||||||||||||||||||||||||||||||||||||||
??wrote: > > Hi, > > I need to add an x percentage or an x value to the OrderTotal > amount passed from the cart to my credit card processor > Any help will be appreciated! > > Code: > */ > > class pm2checkout { > var $code, $title, $description, $enabled; > > // class constructor > function pm2checkout() { > global $order; > > $this->code = 'pm2checkout'; > $this->title = MODULE_PAYMENT_2CHECKOUT_TEXT_TITLE; > $this->description = > MODULE_PAYMENT_2CHECKOUT_TEXT_DESCRIPTION; > $this->sort_order = MODULE_PAYMENT_2CHECKOUT_SORT_ORDER; > $this->enabled = ((MODULE_PAYMENT_2CHECKOUT_STATUS == > 'True') ? true : false); > > if ((int)MODULE_PAYMENT_2CHECKOUT_ORDER_STATUS_ID > 0) { > $this->order_status = > MODULE_PAYMENT_2CHECKOUT_ORDER_STATUS_ID; > } > > if (is_object($order)) $this->update_status(); > > $this->form_action_url = > 'https://www.2checkout.com/cgi-bin/Abuyers/purchase.2c'; > } > > // class methods > function update_status() { > global $order; > > if ( ($this->enabled == true) && > ((int)MODULE_PAYMENT_2CHECKOUT_ZONE > 0) ) { > $check_flag = false; > $check_query = tep_db_query("select zone_id from " . > TABLE_ZONES_TO_GEO_ZONES . " where geo_zone_id = '" . > MODULE_PAYMENT_2CHECKOUT_ZONE . "' and zone_country_id = '" . > $order->billing['country']['id'] . "' order by zone_id"); > while ($check = tep_db_fetch_array($check_query)) { > if ($check['zone_id'] < 1) { > $check_flag = true; > break; > } elseif ($check['zone_id'] == > $order->billing['zone_id']) { > $check_flag = true; > break; > } > } > > if ($check_flag == false) { > $this->enabled = false; > } > } > } > > function javascript_validation() { > return false; > } > > function selection() { > global $order; > > $selection = array('id' => $this->code, > 'module' => $this->title > ); > > return $selection; > } > > function pre_confirmation_check() { > return false; > } > > function confirmation() { > global $HTTP_POST_VARS; > if (DEFAULT_CURRENCY <> 'USD') > $title = $this->title . > MODULE_PAYMENT_2CHECKOUT_CURRENCY_CONVERSITION; > else > $title = $this->title; > $confirmation = array('title' => $title); > > return $confirmation; > } > > function process_button() { > global $HTTP_POST_VARS, $order, $currency, $currencies; > > if (DEFAULT_CURRENCY <> 'USD') > { > $cOrderTotal = $currencies->get_value("USD") * > $order->info['total']; > } > else > $cOrderTotal = $order->info['total']; > > > $process_button_string = > tep_draw_hidden_field('x_login', > MODULE_PAYMENT_2CHECKOUT_LOGIN) . > > tep_draw_hidden_field('x_amount', number_format($cOrderTotal, > 2)) . > > tep_draw_hidden_field('x_invoice_num', date('YmdHis')) . > > tep_draw_hidden_field('x_test_request', > ((MODULE_PAYMENT_2CHECKOUT_TESTMODE == 'Test') ? 'Y' : 'N')) . > tep_draw_hidden_field('x_first_name', > $order->customer['firstname']) . > > tep_draw_hidden_field('x_last_name', > $order->customer['lastname']) . > > tep_draw_hidden_field('x_address', > $order->customer['street_address']) . > > tep_draw_hidden_field('x_city', $order->customer['city']) . > > tep_draw_hidden_field('x_state', $order->customer['state']) . > tep_draw_hidden_field('x_zip', > $order->customer['postcode']) . > > tep_draw_hidden_field('x_country', > $order->customer['country']['title']) . > > tep_draw_hidden_field('x_email', > $order->customer['email_address']) . > > tep_draw_hidden_field('x_phone', > $order->customer['telephone']) . > > tep_draw_hidden_field('x_ship_to_first_name', > $order->delivery['firstname']) . > > tep_draw_hidden_field('x_ship_to_last_name', > $order->delivery['lastname']) . > > tep_draw_hidden_field('x_ship_to_address', > $order->delivery['street_address']) . > > tep_draw_hidden_field('x_ship_to_city', > $order->delivery['city']) . > > tep_draw_hidden_field('x_ship_to_state', > $order->delivery['state']) . > > tep_draw_hidden_field('x_ship_to_zip', > $order->delivery['postcode']) . > > tep_draw_hidden_field('x_ship_to_country', > $order->delivery['country']['title']) . > > tep_draw_hidden_field('x_receipt_link_url', > tep_href_link(FILENAME_CHECKOUT_PROCESS, '', 'SSL')) . > > tep_draw_hidden_field('x_email_merchant', > ((MODULE_PAYMENT_2CHECKOUT_EMAIL_MERCHANT == 'True') ? 'TRUE' > : 'FALSE')); > > return $process_button_string; > } > > function before_process() { > global $HTTP_POST_VARS; > > if ($HTTP_POST_VARS['x_response_code'] != '1') { > tep_redirect(tep_href_link(FILENAME_CHECKOUT_PAYMENT, > 'error_message=' . > urlencode(MODULE_PAYMENT_2CHECKOUT_TEXT_ERROR_MESSAGE), > 'SSL', true, false)); > } > } > > function after_process() { > return false; > } > > function get_error() { > global $HTTP_GET_VARS; > > $error = array('title' => > MODULE_PAYMENT_2CHECKOUT_TEXT_ERROR, > 'error' => > stripslashes(urldecode($HTTP_GET_VARS['error']))); > > return $error; > } > > function check() { > if (!isset($this->_check)) { > $check_query = tep_db_query("select > configuration_value from " . TABLE_CONFIGURATION . " where > configuration_key = 'MODULE_PAYMENT_2CHECKOUT_STATUS'"); > $this->_check = tep_db_num_rows($check_query); > } > return $this->_check; > } > > function install() { > tep_db_query("insert into " . TABLE_CONFIGURATION . " > (configuration_title, configuration_key, configuration_value, > configuration_description, configuration_group_id, > sort_order, set_function, date_added) values ('Enable > 2CheckOut Module', 'MODULE_PAYMENT_2CHECKOUT_STATUS', 'True', > 'Do you want to accept 2CheckOut payments?', '6', '0', > 'tep_cfg_select_option(array(\'True\', \'False\'), ', now())"); > tep_db_query("insert into " . TABLE_CONFIGURATION . " > (configuration_title, configuration_key, configuration_value, > configuration_description, configuration_group_id, > sort_order, date_added) values ('Login/Store Number', > 'MODULE_PAYMENT_2CHECKOUT_LOGIN', '18157', 'Login/Store > Number used for the 2CheckOut service', '6', '0', now())"); > tep_db_query("insert into " . TABLE_CONFIGURATION . " > (configuration_title, configuration_key, configuration_value, > configuration_description, configuration_group_id, > sort_order, set_function, date_added) values ('Transaction > Mode', 'MODULE_PAYMENT_2CHECKOUT_TESTMODE', 'Test', > 'Transaction mode used for the 2Checkout service', '6', '0', > 'tep_cfg_select_option(array(\'Test\', \'Production\'), ', > now())"); > tep_db_query("insert into " . TABLE_CONFIGURATION . " > (configuration_title, configuration_key, configuration_value, > configuration_description, configuration_group_id, > sort_order, set_function, date_added) values ('Merchant > Notifications', 'MODULE_PAYMENT_2CHECKOUT_EMAIL_MERCHANT', > 'True', 'Should 2CheckOut e-mail a receipt to the store > owner?', '6', '0', 'tep_cfg_select_option(array(\'True\', > \'False\'), ', now())"); > tep_db_query("insert into " . TABLE_CONFIGURATION . " > (configuration_title, configuration_key, configuration_value, > configuration_description, configuration_group_id, > sort_order, date_added) values ('Sort order of display.', > 'MODULE_PAYMENT_2CHECKOUT_SORT_ORDER', '0', 'Sort order of > display. Lowest is displayed first.', '6', '0', now())"); > tep_db_query("insert into " . TABLE_CONFIGURATION . " > (configuration_title, configuration_key, configuration_value, > configuration_description, configuration_group_id, > sort_order, use_function, set_function, date_added) values > ('Payment Zone', 'MODULE_PAYMENT_2CHECKOUT_ZONE', '0', 'If a > zone is selected, only enable this payment method for that > zone.', '6', '2', 'tep_get_zone_class_title', > 'tep_cfg_pull_down_zone_classes(', now())"); > tep_db_query("insert into " . TABLE_CONFIGURATION . " > (configuration_title, configuration_key, configuration_value, > configuration_description, configuration_group_id, > sort_order, set_function, use_function, date_added) values > ('Set Order Status', > 'MODULE_PAYMENT_2CHECKOUT_ORDER_STATUS_ID', '0', 'Set the > status of orders made with this payment module to this > value', '6', '0', 'tep_cfg_pull_down_order_statuses(', > 'tep_get_order_status_name', now())"); > } > > function remove() { > tep_db_query("delete from " . TABLE_CONFIGURATION . " > where configuration_key in ('" . implode("', '", > $this->keys()) . "')"); > } > > function keys() { > return array('MODULE_PAYMENT_2CHECKOUT_STATUS', > 'MODULE_PAYMENT_2CHECKOUT_LOGIN', > 'MODULE_PAYMENT_2CHECKOUT_TESTMODE', > 'MODULE_PAYMENT_2CHECKOUT_EMAIL_MERCHANT', > 'MODULE_PAYMENT_2CHECKOUT_ZONE', > 'MODULE_PAYMENT_2CHECKOUT_ORDER_STATUS_ID', > 'MODULE_PAYMENT_2CHECKOUT_SORT_ORDER'); > } > } > ?> ">??![]() |