View of /com_supacart/trunk/admin_files/classes/payment/ps_twocheckout.php
Parent Directory
|
Revision Log
Revision 4 -
(download)
(annotate)
Tue Aug 4 12:46:30 2009 UTC (3 years, 9 months ago) by andphe
File size: 7874 byte(s)
Tue Aug 4 12:46:30 2009 UTC (3 years, 9 months ago) by andphe
File size: 7874 byte(s)
+ adding first set of files for version control
<?php defined( '_VALID_MOS' ) or die( 'Direct Access to this location is not allowed.' ); /** * * @version $Id: ps_twocheckout.php 617 2007-01-04 19:43:08Z soeren_nb $ * @package SupaCart * @subpackage payment * See COPYRIGHT.php for copyright notices and details. * @license GNU/GPL Version 2, see LICENSE.php * SupaCart is free software, originally derived from Virtuemart. This version may have been modified pursuant * to the GNU General Public License, and as distributed it includes or * is derivative of works licensed under the GNU General Public License or * other free or open source software licenses. * See /administrator/components/com_supacart/COPYRIGHT.php for copyright notices and details. * * http://www.supacart.com */ /** * The ps_twocheckout class for transactions with 2Checkout */ class ps_twocheckout { var $payment_code = "TWOCO"; var $classname = "ps_twocheckout"; /** * Show all configuration parameters for this payment method * @returns boolean False when the Payment method has no configration */ function show_configuration() { global $VM_LANG; $database = new ps_DB(); /** Read current Configuration ***/ require_once(CLASSPATH ."payment/".$this->classname.".cfg.php"); ?> <table> <tr> <td><strong>2Checkout.com Seller/Vendor ID</strong></td> <td> <input type="text" name="TWOCO_LOGIN" class="inputbox" value="<?php echo TWOCO_LOGIN ?>" /> </td> <td>Your 2Checkout.com Seller id </td> </tr> <tr> <td><strong>2Checkout.com Secret Word</strong></td> <td> <input type="text" name="TWOCO_SECRETWORD" class="inputbox" value="<?php echo TWOCO_SECRETWORD ?>" /> </td> <td>Your Secret Word for 2Checkout.com. Makes the transactions more secure. </td> </tr> <tr> <td><strong><?php echo $VM_LANG->_PHPSHOP_ADMIN_CFG_PAYPAL_STATUS_SUCCESS ?></strong></td> <td> <select name="TWOCO_VERIFIED_STATUS" class="inputbox" > <?php $q = "SELECT order_status_name,order_status_code FROM #__{sc}_order_status ORDER BY list_order"; $database->query($q); $rows = $database->record; $order_status_code = Array(); $order_status_name = Array(); foreach( $rows as $row ) { $order_status_code[] = $row->order_status_code; $order_status_name[] = $row->order_status_name; } for ($i = 0; $i < sizeof($order_status_code); $i++) { echo "<option value=\"" . $order_status_code[$i]; if (TWOCO_VERIFIED_STATUS == $order_status_code[$i]) echo "\" selected=\"selected\">"; else echo "\">"; echo $order_status_name[$i] . "</option>\n"; }?> </select> </td> <td><?php echo $VM_LANG->_PHPSHOP_ADMIN_CFG_PAYPAL_STATUS_SUCCESS_EXPLAIN ?> </td> </tr> <tr> <td><strong><?php echo $VM_LANG->_PHPSHOP_ADMIN_CFG_PAYPAL_STATUS_FAILED ?></strong></td> <td> <select name="TWOCO_INVALID_STATUS" class="inputbox" > <?php for ($i = 0; $i < sizeof($order_status_code); $i++) { echo "<option value=\"" . $order_status_code[$i]; if (TWOCO_INVALID_STATUS == $order_status_code[$i]) echo "\" selected=\"selected\">"; else echo "\">"; echo $order_status_name[$i] . "</option>\n"; } ?> </select> </td> <td><?php echo $VM_LANG->_PHPSHOP_ADMIN_CFG_PAYPAL_STATUS_FAILED_EXPLAIN ?> </td> </tr> <tr> <td><strong>Merchant Notifications</strong></td> <td> <select name="TWOCO_MERCHANT_EMAIL" class="inputbox" > <option <?php if (TWOCO_MERCHANT_EMAIL == 'True') echo "selected=\"selected\""; ?> value="True"><?php echo $VM_LANG->_PHPSHOP_ADMIN_CFG_YES ?></option> <option <?php if (TWOCO_MERCHANT_EMAIL == 'False') echo "selected=\"selected\""; ?> value="False"><?php echo $VM_LANG->_PHPSHOP_ADMIN_CFG_NO ?></option> </select> </td> <td>Should 2CheckOut e-mail a receipt to the store owner? </td> </tr> <tr> <td><strong>Test Mode?</strong></td> <td> <select name="TWOCO_TESTMODE" class="inputbox" > <option <?php if (TWOCO_TESTMODE == 'Y') echo "selected=\"selected\""; ?> value="Y"><?php echo $VM_LANG->_PHPSHOP_ADMIN_CFG_YES ?></option> <option <?php if (TWOCO_TESTMODE == 'N') echo "selected=\"selected\""; ?> value="N"><?php echo $VM_LANG->_PHPSHOP_ADMIN_CFG_NO ?></option> </select> </td> <td>Select yes to enable the Test/Demo mode? </td> </tr> </table> <?php // return false if there's no configuration return true; } function has_configuration() { // return false if there's no configuration return true; } /** * Returns the "is_writeable" status of the configuration file * @param void * @returns boolean True when the configuration file is writeable, false when not */ function configfile_writeable() { return is_writeable( CLASSPATH."payment/".$this->classname.".cfg.php" ); } /** * Returns the "is_readable" status of the configuration file * @param void * @returns boolean True when the configuration file is writeable, false when not */ function configfile_readable() { return is_readable( CLASSPATH."payment/".$this->classname.".cfg.php" ); } /** * Writes the configuration file for this payment method * @param array An array of objects * @returns boolean True when writing was successful */ function write_configuration( &$d ) { $my_config_array = array("TWOCO_LOGIN" => $d['TWOCO_LOGIN'], "TWOCO_SECRETWORD" => $d['TWOCO_SECRETWORD'], "TWOCO_VERIFIED_STATUS" => $d['TWOCO_VERIFIED_STATUS'], "TWOCO_INVALID_STATUS" => $d['TWOCO_INVALID_STATUS'], "TWOCO_TESTMODE" => $d['TWOCO_TESTMODE'], "TWOCO_MERCHANT_EMAIL" => $d['TWOCO_MERCHANT_EMAIL'] ); $config = "<?php\n"; $config .= "defined('_VALID_MOS') or die('Direct Access to this location is not allowed.'); \n\n"; foreach( $my_config_array as $key => $value ) { $config .= "define ('$key', '$value');\n"; } $config .= "?>"; if ($fp = fopen(CLASSPATH ."payment/".$this->classname.".cfg.php", "w")) { fputs($fp, $config, strlen($config)); fclose ($fp); return true; } else return false; } /************************************************************************** ** name: process_payment() ** created by: soeren ** description: ** parameters: $order_number, the number of the order, we're processing here ** $order_total, the total $ of the order ** returns: ***************************************************************************/ function process_payment($order_number, $order_total, &$d) { return true; } }
| ViewVC Help | |
| Powered by ViewVC 1.0.0 |

