for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Integration
*
* @author Pronamic <[email protected]>
* @copyright 2005-2018 Pronamic
* @license GPL-3.0-or-later
* @package Pronamic\WordPress\Pay\Gateways\Adyen
*/
namespace Pronamic\WordPress\Pay\Gateways\Adyen;
use Pronamic\WordPress\Pay\Gateways\Common\AbstractIntegration;
* @author Remco Tolsma
* @version 2.0.0
* @since 1.0.0
class Integration extends AbstractIntegration {
public function __construct() {
$this->id = 'adyen';
$this->name = 'Adyen';
$this->url = 'http://www.adyen.com/';
$this->provider = 'adyen';
}
* Get config factory class.
* @return string
public function get_config_factory_class() {
return __NAMESPACE__ . '\ConfigFactory';
* Get settings class.
public function get_settings_class() {
return __NAMESPACE__ . '\Settings';
* Get required settings for this integration.
* @link https://github.com/wp-premium/gravityforms/blob/1.9.16/includes/fields/class-gf-field-multiselect.php#L21-L42
* @since 1.1.6
* @return array
public function get_settings() {
$settings = parent::get_settings();
$settings[] = 'adyen';
return $settings;