<?php
/**
 * sagepaynow.php
 *
 * Main module file which is responsible for installing, editing and deleting
 * module details from DB and sending data to Sage Pay Now.
 *
 */

// Load dependency files
define( 'PN_DEBUG', ( MODULE_PAYMENT_SAGEPAYNOW_DEBUG == 'True' ? true : false ) );
include_once( (IS_ADMIN_FLAG === true ? DIR_FS_CATALOG_MODULES : DIR_WS_MODULES ) . 'payment/sagepaynow/sagepaynow_common.inc');
include_once( (IS_ADMIN_FLAG === true ? DIR_FS_CATALOG_MODULES : DIR_WS_MODULES ) . 'payment/sagepaynow/sagepaynow_functions.php');

/**
 * sagepaynow
 *
 * Class for Sage Pay Now
 */
class sagepaynow extends base
{
    /**
     * $code string repesenting the payment method
     * @var string
     */
    var $code;

    /**
     * $title is the displayed name for this payment method
     * @var string
     */
    var $title;

    /**
     * $description is a soft name for this payment method
     * @var string
     */
    var $description;

    /**
     * $enabled determines whether this module shows or not... in catalog.
     * @var boolean
     */
    var $enabled;

    /**
     * sagepaynow
     *
     * Constructor
     *
     * >> Standard ZenCart
     * @param int $paypal_ipn_id
     * @return sagepaynow
     */
    function sagepaynow( $paypal_ipn_id = '' )
    {
        // Variable initialization
        global $order, $messageStack;
        $this->code = 'sagepaynow';
        $this->codeVersion = '1.0.0';

        // Set payment module title in Admin
        if( IS_ADMIN_FLAG === true )
        {
            $this->title = MODULE_PAYMENT_SAGEPAYNOW_TEXT_ADMIN_TITLE;            
        }
        // Set payment module title in Catalog
        else
        {
            $this->title = MODULE_PAYMENT_SAGEPAYNOW_TEXT_CATALOG_TITLE;
        }

        // Set other payment module variables
        $this->description = MODULE_PAYMENT_SAGEPAYNOW_TEXT_DESCRIPTION;
        $this->sort_order = MODULE_PAYMENT_SAGEPAYNOW_SORT_ORDER;
        $this->enabled = ( ( MODULE_PAYMENT_SAGEPAYNOW_STATUS == 'True' ) ? true : false );

        if( (int)MODULE_PAYMENT_SAGEPAYNOW_ORDER_STATUS_ID > 0 )
            $this->order_status = MODULE_PAYMENT_SAGEPAYNOW_ORDER_STATUS_ID;

        if( is_object( $order ) )
            $this->update_status();

        // Set posting destination destination
        $this->form_action_url = 'https://paynow.sagepay.co.za/site/paynow.aspx';        

        // Check for right version
        if( PROJECT_VERSION_MAJOR != '1' && substr( PROJECT_VERSION_MINOR, 0, 3 ) != '3.9' )
            $this->enabled = false;
    }

    /**
     * update_status
     *
     * Calculate zone matches and flag settings to determine whether this
     * module should display to customers or not.
     *
     */
    function update_status()
    {
        global $order, $db;

        if( ( $this->enabled == true ) && ( (int)MODULE_PAYMENT_SAGEPAYNOW_ZONE > 0 ) )
        {
            $check_flag = false;
            $check_query = $db->Execute(
                "SELECT `zone_id`
                FROM ". TABLE_ZONES_TO_GEO_ZONES ."
                WHERE `geo_zone_id` = '". MODULE_PAYMENT_SAGEPAYNOW_ZONE ."'
                  AND `zone_country_id` = '" . $order->billing['country']['id'] ."'
                ORDER BY `zone_id`");

            while( !$check_query->EOF )
            {
                if( $check_query->fields['zone_id'] < 1 )
                {
                    $check_flag = true;
                    break;
                }
                elseif( $check_query->fields['zone_id'] == $order->billing['zone_id'] )
                {
                    $check_flag = true;
                    break;
                }
                $check_query->MoveNext();
            }

            if( $check_flag == false )
            {
                $this->enabled = false;
            }
        }
    }

    /**
     * javascript_validation
     *
     * JS validation which does error-checking of data-entry if this module is selected for use
     * (Number, Owner, and CVV Lengths)
     *
     * >> Standard ZenCart
     * @return string
     */
    function javascript_validation()
    {
        return( false );
    }

    /**
     * selection
     *
     * Displays payment method name along with Credit Card Information
     * Submission Fields (if any) on the Checkout Payment Page.
     *
     * >> Standard ZenCart
     * @return array
     */
    function selection()
    {
        return array(
            'id' => $this->code,
            'module' => MODULE_PAYMENT_SAGEPAYNOW_TEXT_CATALOG_LOGO,
            'icon' => MODULE_PAYMENT_SAGEPAYNOW_TEXT_CATALOG_LOGO
            );
    }

    /**
     * pre_confirmation_check
     *
     * Normally evaluates the Credit Card Type for acceptance and the validity of the Credit Card Number & Expiration Date
     * Since paypal module is not collecting info, it simply skips this step.
     *
     * >> Standard ZenCart
     * @return boolean
     */
    function pre_confirmation_check()
    {
        return( false );
    }

    /**
     * confirmation
     *
     * Display Credit Card Information on the Checkout Confirmation Page
     * Since none is collected for paypal before forwarding to paypal site, this is skipped
     *
     * >> Standard ZenCart
     * @return boolean
     */
    function confirmation()
    {
        return( false );
    }

    /**
     * process_button
     *
     * Build the data and actions to process when the "Submit" button is
     * pressed on the order-confirmation screen.
     *
     * This sends the data to the payment gateway for processing.
     * (These are hidden fields on the checkout confirmation page)
     *
     * >> Standard ZenCart
     * @return string
     */
    function process_button()
    {
        // Variable initialization
        global $db, $order, $currencies, $currency;
        $data = array();
        $buttonArray = array();

        // Sage Pay Now identifiers
         
		$serviceKey = MODULE_PAYMENT_SAGEPAYNOW_MERCHANT_KEY;
		$vendorKey = '24ade73c-98cf-47b3-99be-cc7b867b3080';       
        
        // Create URLs
        $returnUrl = zen_href_link( FILENAME_CHECKOUT_PROCESS, 'referer=sagepaynow', 'SSL' );
        $cancelUrl = zen_href_link( FILENAME_CHECKOUT_PAYMENT, '', 'SSL' );
        $notifyUrl = zen_href_link( 'sagepaynnow_ipn_handler.php', '', 'SSL', false, false, true );

        //// Set the currency and get the order amount
        $currency = 'ZAR';
        $currencyDecPlaces = $currencies->get_decimal_places( $currency );
        $this->totalsum = $order->info['total'];
        $this->transaction_currency = $currency;
        $this->transaction_amount = ( $this->totalsum * $currencies->get_value( $currency ) );

        //// Generate the description
        $description = '';

        foreach( $order->products as $product )
        {
            $price = round( $product['final_price'] * ( 100 + $product['tax'] ) / 100, 2 );
            $priceStr = number_format( $price, $currencyDecPlaces );

            $description .= $product['qty'] .' x '. $product['name'];

            if( $product['qty'] > 1 )
            {
                $linePrice = $price * $product['qty'];
                $linePriceStr = number_format( $linePrice, $currencyDecPlaces );

                $description .= ' @ '. $priceStr .'ea = '. $linePriceStr;
            }
            else
                $description .= ' = '. $priceStr;

            $description .= '; ';
        }

        $description .= 'Shipping = '. number_format( $order->info['shipping_cost'], $currencyDecPlaces ) .'; ';
        $description .= 'Total= '. number_format( $this->transaction_amount, $currencyDecPlaces ) .'; ';

        //// Save the session (and remove expired sessions)
        pn_removeExpiredSessions();
        $tsExpire = strtotime( '+'. PN_SESSION_LIFE .' days' );

       
        // Delete existing record (if it exists)
        $sql =
            "DELETE FROM ". TABLE_SAGEPAYNOW_SESSION ."
            WHERE `session_id` = '". zen_db_input( zen_session_id() ) ."'";
        $db->Execute( $sql );

        // patch for multi-currency - AGB 19/07/13 - see also the ITN handler
        $_SESSION['sagepaynow_amount'] = number_format( $this->transaction_amount, $currencyDecPlaces, '.', '' );

        $sql =
            "INSERT INTO ". TABLE_SAGEPAYNOW_SESSION ."
                ( session_id, saved_session, expiry )
            VALUES (
                '". zen_db_input( zen_session_id() ) ."',
                '". base64_encode( serialize( $_SESSION ) ) ."',
                '". date( PN_FORMAT_DATETIME_DB, $tsExpire ) ."' )";
        $db->Execute( $sql );


        // Set the data
        $mPaymentId = pn_createUUID();
        $data = array(
            // Merchant fields            
            'm1' => $serviceKey,
        	'm2' => $vendorKey,	
            'return_url' => $returnUrl,
            'cancel_url' => $cancelUrl,
            'notify_url' => $notifyUrl,

            // Customer details
            'name_first' => replace_accents( $order->customer['firstname'] ),
            'name_last' => replace_accents( $order->customer['lastname'] ),
            'email_address' => $order->customer['email_address'],

            // Item Details
            'p3' => MODULE_PAYMENT_SAGEPAYNOW_PURCHASE_DESCRIPTION_TITLE . $mPaymentId,
        	// [item_description] => 1 x Strong Widget = 10.00; 1 x Widget = 10.00; Shipping = 5.00; Total= 25.00;
            // 'item_description' => $description,
            'p4' => number_format( $this->transaction_amount, $currencyDecPlaces, '.', '' ),
            'p2' => $mPaymentId,
            //'currency_code' => $currency,
            'm4' => zen_session_name() .'='. zen_session_id(),
            
            // Other details
            'user_agent' => PN_USER_AGENT,
            );

        pnlog( "Data to send (location process_button):\n". print_r( $data, true ) );


        //// Check the data and create the process button array
        foreach( $data as $name => $value )
        {
            // Remove quotation marks
            $value = str_replace( '"', '', $value );

            $buttonArray[] = zen_draw_hidden_field( $name, $value );
        }

        $processButtonString = implode( "\n", $buttonArray ) ."\n";


        return( $processButtonString );
    }

    /**
     * before_process
     *
     * Store transaction info to the order and process any results that come
     * back from the payment gateway
     *
     * >> Standard ZenCart
     * >> Called when the user is returned from the payment gateway
     */
    function before_process()
    {
        $pre = __METHOD__ .' : ';
        pnlog( $pre.'bof' );

        // Variable initialization
        global $db, $order_total_modules; 

        // If page was called correctly with "referer" tag
        if( isset( $_GET['referer'] ) && strcasecmp( $_GET['referer'], 'sagepaynow' ) == 0 )
        {
            $this->notify( 'NOTIFY_PAYMENT_SAGEPAYNOW_RETURN_TO_STORE' );

            // Reset all session variables
            $_SESSION['cart']->reset( true );
            unset( $_SESSION['sendto'] );
            unset( $_SESSION['billto'] );
            unset( $_SESSION['shipping'] );
            unset( $_SESSION['payment'] );
            unset( $_SESSION['comments'] );
            unset( $_SESSION['cot_gv'] );
            $order_total_modules->clear_posts();

            // Redirect to the checkout success page
            zen_redirect( zen_href_link( FILENAME_CHECKOUT_SUCCESS, '', 'SSL' ) );
        }
        else
        {
            $this->notify( 'NOTIFY_PAYMENT_SAGEPAYNOW_CANCELLED_DURING_CHECKOUT' );

            // Remove the pending Sage Pay Now transaction from the table
            // TODO Evaluate pn_m_payment_id
            if( isset( $_SESSION['pn_m_payment_id'] ) )
            {
                $sql =
                    "DELETE FROM ". pn_getActiveTable() ."
                    WHERE `m_payment_id` = ". $_SESSION['pn_m_payment_id'] ."
                    LIMIT 1";
                $db->Execute( $sql );

                unset( $_SESSION['pn_m_payment_id'] );
            }

            // Redirect to the payment page
            zen_redirect( zen_href_link( FILENAME_CHECKOUT_PAYMENT, '', 'SSL' ) );
        }
    }

    /**
     * check_referrer
     *
     * Checks referrer
     *
     * >> Standard ZenCart
     * @param string $zf_domain
     * @return boolean
     */
    function check_referrer( $zf_domain )
    {
        return( true );
    }

    /**
     * after_process
     *
     * Post-processing activities
     *
     * >> Standard ZenCart
     * @return boolean
     */
    function after_process()
    {
        $pre = __METHOD__ .' : ';
        pnlog( $pre.'bof' );

        // Set 'order not created' flag
        $_SESSION['order_created'] = '';

        return( false );
    }

    /**
     * Used to display error message details
     *
     * @return boolean
     */
    function output_error()
    {
        return( false );
    }

    /**
     * Check to see whether module is installed
     *
     * >> Standard ZenCart
     * @return boolean
     */
    function check()
    {
        // Variable initialization
        global $db;

        if( !isset( $this->_check ) )
        {
            $check_query = $db->Execute(
                "SELECT `configuration_value`
                FROM ". TABLE_CONFIGURATION ."
                WHERE `configuration_key` = 'MODULE_PAYMENT_SAGEPAYNOW_STATUS'");
            $this->_check = $check_query->RecordCount();
        }

        return( $this->_check );
    }
    // }}}
    // {{{ install ()
    /**
     * install
     *
     * Installs Sage Pay Now payment module in Zen Cart (osCommerce) and creates necessary
     * configuration fields which need to be supplied by store owner.
     * 
     * TODO Remove references to MERCHANT_KEY and replace with SERVICE_KEY
     *
     * >> Standard ZenCart
     */
    function install()
    {
        // Variable Initialization
        global $db;

        //// Insert configuration values
        // MODULE_PAYMENT_SAGEPAYNOW_STATUS (Default = False)
        $db->Execute(
            "INSERT INTO ". TABLE_CONFIGURATION ."( configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, set_function, date_added )
            VALUES( 'Enable Sage Pay Now?', 'MODULE_PAYMENT_SAGEPAYNOW_STATUS', 'False', 'Do you want to enable Sage Pay Now?', '6', '0', 'zen_cfg_select_option(array(\'True\', \'False\'), ', now() )" );        
        // MODULE_PAYMENT_SAGEPAYNOW_MERCHANT_KEY (Default = Generic sandbox credentials)
        $db->Execute(
            "INSERT INTO ". TABLE_CONFIGURATION ."( configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, date_added )
            VALUES( 'Sage Pay Now Service Key', 'MODULE_PAYMENT_SAGEPAYNOW_MERCHANT_KEY', '', 'Your Software Key from Sage Pay Now<br><span style=\"font-size: 0.9em; color: green;\">(Click <a href=\"http://www.sagepay.co.za/acc/integration\" target=\"_blank\">here</a> to get yours. This is initially set to a test value for testing purposes.)</span>', '6', '0', now() )" );        
        // MODULE_PAYMENT_SAGEPAYNOW_SORT_ORDER (Default = 0)
        $db->Execute(
            "INSERT INTO " . TABLE_CONFIGURATION . "( configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, date_added )
            VALUES( 'Sort Display Order', 'MODULE_PAYMENT_SAGEPAYNOW_SORT_ORDER', '0', 'Sort order of display. Lowest is displayed first.', '6', '0', now())" );
        // MODULE_PAYMENT_SAGEPAYNOW_ZONE (Default = "-none-")
        $db->Execute(
            "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_SAGEPAYNOW_ZONE', '0', 'If a zone is selected, only enable this payment method for that zone.', '6', '2', 'zen_get_zone_class_title', 'zen_cfg_pull_down_zone_classes(', now())" );
        // MODULE_PAYMENT_SAGEPAYNOW_PREPARE_ORDER_STATUS_ID
        $db->Execute(
            "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 Preparing Order Status', 'MODULE_PAYMENT_SAGEPAYNOW_PREPARE_ORDER_STATUS_ID', '1', 'Set the status of prepared orders made with Sage Pay Now to this value', '6', '0', 'zen_cfg_pull_down_order_statuses(', 'zen_get_order_status_name', now())");
        // MODULE_PAYMENT_SAGEPAYNOW_ORDER_STATUS_ID
        $db->Execute(
            "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 Acknowledged Order Status', 'MODULE_PAYMENT_SAGEPAYNOW_ORDER_STATUS_ID', '2', 'Set the status of orders made with Sage Pay Now to this value', '6', '0', 'zen_cfg_pull_down_order_statuses(', 'zen_get_order_status_name', now())");
        // MODULE_PAYMENT_SAGEPAYNOW_DEBUG (Default = False)
        $db->Execute(
            "INSERT INTO ". TABLE_CONFIGURATION ."( configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, set_function, date_added )
            VALUES( 'Enable debugging?', 'MODULE_PAYMENT_SAGEPAYNOW_DEBUG', 'False', 'Do you want to enable debugging?', '6', '0', 'zen_cfg_select_option(array(\'True\', \'False\'), ', now() )" );
        // MODULE_PAYMENT_SAGEPAYNOW_DEBUG_EMAIL
        $db->Execute(
            "INSERT INTO ". TABLE_CONFIGURATION ."( configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, date_added )
            VALUES( 'Debug email address', 'MODULE_PAYMENT_SAGEPAYNOW_DEBUG_EMAIL', '', 'Where would you like debugging information emailed?', '6', '0', now() )" );

        //// Create tables
        $tables = array();
        $result = $db->Execute( "SHOW TABLES LIKE 'sagepaynowt%'" );
        $fieldName = 'Tables_in_'. DB_DATABASE .' (sagepaynow%)';

        while( !$result->EOF )
        {
            $tables[] = $result->fields[$fieldName];
            $result->MoveNext();
        }

        // Main sage pay now table
        if( !in_array( TABLE_SAGEPAYNOW, $tables ) )
        {
            $db->Execute(
                "CREATE TABLE `". TABLE_SAGEPAYNOW ."` (
                  `id` INTEGER UNSIGNED NOT NULL auto_increment,
                  `m_payment_id` VARCHAR(36) NOT NULL,
                  `pn_payment_id` VARCHAR(36) NOT NULL,
                  `zc_order_id` INTEGER UNSIGNED DEFAULT NULL,
                  `amount_gross` DECIMAL(14,2) DEFAULT NULL,
                  `amount_fee` DECIMAL(14,2) DEFAULT NULL,
                  `amount_net` DECIMAL(14,2) DEFAULT NULL,
                  `sagepaynow_data` TEXT DEFAULT NULL,
                  `timestamp` DATETIME DEFAULT NULL,
                  `status` VARCHAR(50) DEFAULT NULL,
                  `status_date` DATETIME DEFAULT NULL,
                  `status_reason` VARCHAR(255) DEFAULT NULL,
                  PRIMARY KEY( `id` ),
                  KEY `idx_m_payment_id` (`m_payment_id`),
                  KEY `idx_pn_payment_id` (`pn_payment_id`),
                  KEY `idx_zc_order_id` (`zc_order_id`),
                  KEY `idx_timestamp` (`timestamp`)
                  ) ENGINE=MyISAM DEFAULT CHARSET=latin1"
                );
        }

        // Payment status table
        if( !in_array( TABLE_SAGEPAYNOW_PAYMENT_STATUS, $tables ) )
        {
            $db->Execute(
                "CREATE TABLE `". TABLE_SAGEPAYNOW_PAYMENT_STATUS ."` (
                  `id` INTEGER UNSIGNED NOT NULL,
                  `name` VARCHAR(50) NOT NULL,
                  PRIMARY KEY  (`id`)
                ) ENGINE=MyISAM DEFAULT CHARSET=latin1"
                );

            $db->Execute(
                "INSERT INTO `". TABLE_SAGEPAYNOW_PAYMENT_STATUS ."`
                    ( `id`,`name` )
                VALUES
                    ( 1, 'COMPLETE' ),
                    ( 2, 'PENDING' ),
                    ( 3, 'FAILED' )"
                );
        }

        // Payment status history table
        if( !in_array( TABLE_SAGEPAYNOW_PAYMENT_STATUS_HISTORY, $tables ) )
        {
            $db->Execute(
                "CREATE TABLE `". TABLE_SAGEPAYNOW_PAYMENT_STATUS_HISTORY ."`(
                  `id` INTEGER UNSIGNED NOT NULL AUTO_INCREMENT,
                  `pn_order_id` INTEGER UNSIGNED NOT NULL,
                  `timestamp` DATETIME DEFAULT NULL,
                  `status` VARCHAR(50) DEFAULT NULL,
                  `status_reason` VARCHAR(255) DEFAULT NULL,
                  PRIMARY KEY( `id` ),
                  KEY `idx_pn_order_id` (`pn_order_id`)
                ) ENGINE=MyISAM DEFAULT CHARSET=latin1"
                );
        }

        // Session table
        if( !in_array( TABLE_SAGEPAYNOW_SESSION, $tables ) )
        {
            $db->Execute(
                "CREATE TABLE `". TABLE_SAGEPAYNOW_SESSION ."` (
                  `id` INTEGER UNSIGNED NOT NULL AUTO_INCREMENT,
                  `session_id` VARCHAR(100) NOT NULL,
                  `saved_session` MEDIUMBLOB NOT NULL,
                  `expiry` DATETIME NOT NULL,
                  PRIMARY KEY( `id` ),
                  KEY `idx_session_id` (`session_id`(36))
                ) ENGINE=MyISAM DEFAULT CHARSET=latin1"
                );
        }

        // Testing table
        if( !in_array( TABLE_SAGEPAYNOW_TESTING, $tables ) )
        {
            $db->Execute(
                "CREATE TABLE `". TABLE_SAGEPAYNOW_TESTING ."` (
                  `id` INTEGER UNSIGNED NOT NULL auto_increment,
                  `m_payment_id` VARCHAR(36) NOT NULL,
                  `pn_payment_id` VARCHAR(36) NOT NULL,
                  `zc_order_id` INTEGER UNSIGNED DEFAULT NULL,
                  `amount_gross` DECIMAL(14,2) DEFAULT NULL,
                  `amount_fee` DECIMAL(14,2) DEFAULT NULL,
                  `amount_net` DECIMAL(14,2) DEFAULT NULL,
                  `sagepaynow_data` TEXT DEFAULT NULL,
                  `timestamp` DATETIME DEFAULT NULL,
                  `status` VARCHAR(50) DEFAULT NULL,
                  `status_date` DATETIME DEFAULT NULL,
                  `status_reason` VARCHAR(255) DEFAULT NULL,
                  PRIMARY KEY( `id` ),
                  KEY `idx_m_payment_id` (`m_payment_id`),
                  KEY `idx_pn_payment_id` (`pn_payment_id`),
                  KEY `idx_zc_order_id` (`zc_order_id`),
                  KEY `idx_timestamp` (`timestamp`)
                  ) ENGINE=MyISAM DEFAULT CHARSET=latin1"
                );
        }

        $this->notify( 'NOTIFY_PAYMENT_SAGEPAYNOW_INSTALLED' );
    }
    // }}}
    // {{{ remove()
    /**
     * remove
     *
     * Remove the module and all its settings. Leaves the tables which were
     * created as they will have information from past orders which is still
     * relevant and required.
     *
     * >> Standard ZenCart     
     */
    function remove()
    {
        // Variable Initialization
        global $db;

        // Remove all configuration variables
        $db->Execute(
            "DELETE FROM ". TABLE_CONFIGURATION ."
            WHERE `configuration_key` LIKE 'MODULE\_PAYMENT\_SAGEPAYNOW\_%'");

        $this->notify( 'NOTIFY_PAYMENT_SAGEPAYNOW_UNINSTALLED' );
    }

    /**
     * keys
     *
     * Returns an array of the configuration keys for the module
     *
     * >> Standard osCommerce     
     * @return array
     */
    function keys()
    {
        // Variable initialization
        $keys = array(
            'MODULE_PAYMENT_SAGEPAYNOW_STATUS',
            
            'MODULE_PAYMENT_SAGEPAYNOW_MERCHANT_KEY',
            
            'MODULE_PAYMENT_SAGEPAYNOW_SORT_ORDER',
            'MODULE_PAYMENT_SAGEPAYNOW_ZONE',
            'MODULE_PAYMENT_SAGEPAYNOW_PREPARE_ORDER_STATUS_ID',
            'MODULE_PAYMENT_SAGEPAYNOW_ORDER_STATUS_ID',
            'MODULE_PAYMENT_SAGEPAYNOW_DEBUG',
            'MODULE_PAYMENT_SAGEPAYNOW_DEBUG_EMAIL',
            );

        return( $keys );
    }

    /**
     * after_order_create
     *
     * >> Standard osCommerce
     */
    function after_order_create( $insert_id )
    {
        $pre = __METHOD__ .' : ';
        pnlog( $pre.'bof' );

        return( false );
    }

}
?>