Skip to content

Commit

Permalink
Simplified integration classes.
Browse files Browse the repository at this point in the history
  • Loading branch information
remcotolsma committed Nov 11, 2015
1 parent bcb6e54 commit 8d2fe81
Show file tree
Hide file tree
Showing 5 changed files with 29 additions and 10 deletions.
14 changes: 12 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# WordPress Pay Gateway: Ogone
# WordPress Pay Gateway: Ingenico/Ogone

**Ogone driver for the WordPress payment processing library.**
**Ingenico/Ogone driver for the WordPress payment processing library.**

[![Build Status](https://travis-ci.org/wp-pay-gateways/ogone.svg?branch=develop)](https://travis-ci.org/wp-pay-gateways/ogone)
[![Coverage Status](https://coveralls.io/repos/wp-pay-gateways/ogone/badge.svg?branch=master&service=github)](https://coveralls.io/github/wp-pay-gateways/ogone?branch=master)
Expand All @@ -10,6 +10,16 @@
[![License](https://poser.pugx.org/wp-pay-gateways/ogone/license.svg)](https://packagist.org/packages/wp-pay-gateways/ogone)
[![Built with Grunt](https://cdn.gruntjs.com/builtwith.png)](http://gruntjs.com/)

## Production Environment

**Dashboard URL:** https://secure.ogone.com/ncol/prod/backoffice
**Payment Server URL:** https://secure.ogone.com/ncol/prod/orderstandard.asp

## Test Environment

**Dashboard URL:** https://secure.ogone.com/ncol/test/backoffice
**Payment Server URL:** https://secure.ogone.com/ncol/test/orderstandard.asp

## Documentation

* [Integrate with Ogone e-Commerce](http://payment-services.ingenico.com/en/ogone/support/guides/integration%20guides/e-commerce)
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "wp-pay-gateways/ogone",
"description": "Ogone driver for the WordPress payment processing library.",
"keywords": ["wordpress", "wp", "pay", "ogone", "gateway", "pronamic"],
"description": "Ingenico/Ogone driver for the WordPress payment processing library.",
"keywords": ["wordpress", "wp", "pay", "ogone", "ingenico", "gateway", "pronamic"],
"homepage": "http://www.wp-pay.org/gateways/ogone/",
"license": "GPL-3.0+",
"authors": [
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
<?php

class Pronamic_WP_Pay_Gateways_Ogone_DirectLink_GatewayIntegration {
class Pronamic_WP_Pay_Gateways_Ogone_DirectLink_Integration {
public function __construct() {
$this->id = 'ogone-directlink';
$this->id = 'ogone-directlink';
$this->name = 'Ingenico/Ogone - DirectLink';
$this->url = 'https://secure.ogone.com/';
$this->provider = 'ogone';
}

public function get_config_factory_class() {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
<?php

class Pronamic_WP_Pay_Gateways_Ogone_OrderStandard_GatewayIntegration {
class Pronamic_WP_Pay_Gateways_Ogone_OrderStandard_Integration {
public function __construct() {
$this->id = 'ogone-orderstandard';
$this->id = 'ogone-orderstandard';
$this->name = 'Ingenico/Ogone - OrderStandard';
$this->url = 'https://secure.ogone.com/';
$this->provider = 'ogone';
}

public function get_config_factory_class() {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
<?php

class Pronamic_WP_Pay_Gateways_Ogone_OrderStandardEasy_GatewayIntegration {
class Pronamic_WP_Pay_Gateways_Ogone_OrderStandardEasy_Integration {
public function __construct() {
$this->id = 'ogone-easy';
$this->id = 'ogone-easy';
$this->name = 'Ingenico/Ogone - Easy';
$this->url = 'https://secure.ogone.com/';
$this->provider = 'ogone';
}

public function get_config_factory_class() {
Expand Down

0 comments on commit 8d2fe81

Please sign in to comment.