mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-08-30 05:00:51 +08:00
Merge pull request #2770 from woocommerce/PCP-3864-new-settings
Add new settings containers
This commit is contained in:
commit
1e909c5354
3 changed files with 259 additions and 0 deletions
191
modules/ppcp-settings/src/Data/GeneralSettings.php
Normal file
191
modules/ppcp-settings/src/Data/GeneralSettings.php
Normal file
|
@ -0,0 +1,191 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* GeneralSettings class
|
||||||
|
*
|
||||||
|
* @package WooCommerce\PayPalCommerce\Settings\Data
|
||||||
|
*/
|
||||||
|
|
||||||
|
declare( strict_types = 1 );
|
||||||
|
|
||||||
|
namespace WooCommerce\PayPalCommerce\Settings\Data;
|
||||||
|
|
||||||
|
use RuntimeException;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This class serves as a container for managing the general plugin settings,
|
||||||
|
* such as the connection credentials.
|
||||||
|
*/
|
||||||
|
class GeneralSettings extends AbstractDataModel {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Option key where profile details are stored.
|
||||||
|
*
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
protected const OPTION_KEY = 'woocommerce-ppcp-data-general-settings';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get default values for the model.
|
||||||
|
*
|
||||||
|
* @return array
|
||||||
|
*/
|
||||||
|
protected function get_defaults() : array {
|
||||||
|
return array(
|
||||||
|
'is_sandbox' => false,
|
||||||
|
'live_client_id' => '',
|
||||||
|
'live_client_secret' => '',
|
||||||
|
'live_merchant_id' => '',
|
||||||
|
'live_merchant_email' => '',
|
||||||
|
'sandbox_client_id' => '',
|
||||||
|
'sandbox_client_secret' => '',
|
||||||
|
'sandbox_merchant_id' => '',
|
||||||
|
'sandbox_merchant_email' => '',
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
// -----
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the 'is_sandbox' flag.
|
||||||
|
*/
|
||||||
|
public function is_sandbox() : bool {
|
||||||
|
return (bool) $this->data['is_sandbox'];
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Sets the 'is_sandbox' flag.
|
||||||
|
*
|
||||||
|
* @param bool $value The value to set.
|
||||||
|
*/
|
||||||
|
public function set_is_sandbox( bool $value ) : void {
|
||||||
|
$this->data['is_sandbox'] = $value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the live client ID.
|
||||||
|
*/
|
||||||
|
public function live_client_id() : string {
|
||||||
|
return $this->data['live_client_id'];
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Sets the live client ID.
|
||||||
|
*
|
||||||
|
* @param string $value The value to set.
|
||||||
|
*/
|
||||||
|
public function set_live_client_id( string $value ) : void {
|
||||||
|
$this->data['live_client_id'] = sanitize_text_field( $value );
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the live client secret.
|
||||||
|
*/
|
||||||
|
public function live_client_secret() : string {
|
||||||
|
return $this->data['live_client_secret'];
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Sets the live client secret.
|
||||||
|
*
|
||||||
|
* @param string $value The value to set.
|
||||||
|
*/
|
||||||
|
public function set_live_client_secret( string $value ) : void {
|
||||||
|
$this->data['live_client_secret'] = sanitize_text_field( $value );
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the live merchant ID.
|
||||||
|
*/
|
||||||
|
public function live_merchant_id() : string {
|
||||||
|
return $this->data['live_merchant_id'];
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Sets the live merchant ID.
|
||||||
|
*
|
||||||
|
* @param string $value The value to set.
|
||||||
|
*/
|
||||||
|
public function set_live_merchant_id( string $value ) : void {
|
||||||
|
$this->data['live_merchant_id'] = sanitize_text_field( $value );
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the live merchant email.
|
||||||
|
*/
|
||||||
|
public function live_merchant_email() : string {
|
||||||
|
return $this->data['live_merchant_email'];
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Sets the live merchant email.
|
||||||
|
*
|
||||||
|
* @param string $value The value to set.
|
||||||
|
*/
|
||||||
|
public function set_live_merchant_email( string $value ) : void {
|
||||||
|
$this->data['live_merchant_email'] = sanitize_email( $value );
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the sandbox client ID.
|
||||||
|
*/
|
||||||
|
public function sandbox_client_id() : string {
|
||||||
|
return $this->data['sandbox_client_id'];
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Sets the sandbox client ID.
|
||||||
|
*
|
||||||
|
* @param string $value The value to set.
|
||||||
|
*/
|
||||||
|
public function set_sandbox_client_id( string $value ) : void {
|
||||||
|
$this->data['sandbox_client_id'] = sanitize_text_field( $value );
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the sandbox client secret.
|
||||||
|
*/
|
||||||
|
public function sandbox_client_secret() : string {
|
||||||
|
return $this->data['sandbox_client_secret'];
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Sets the sandbox client secret.
|
||||||
|
*
|
||||||
|
* @param string $value The value to set.
|
||||||
|
*/
|
||||||
|
public function set_sandbox_client_secret( string $value ) : void {
|
||||||
|
$this->data['sandbox_client_secret'] = sanitize_text_field( $value );
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the sandbox merchant ID.
|
||||||
|
*/
|
||||||
|
public function sandbox_merchant_id() : string {
|
||||||
|
return $this->data['sandbox_merchant_id'];
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Sets the sandbox merchant ID.
|
||||||
|
*
|
||||||
|
* @param string $value The value to set.
|
||||||
|
*/
|
||||||
|
public function set_sandbox_merchant_id( string $value ) : void {
|
||||||
|
$this->data['sandbox_merchant_id'] = sanitize_text_field( $value );
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the sandbox merchant email.
|
||||||
|
*/
|
||||||
|
public function sandbox_merchant_email() : string {
|
||||||
|
return $this->data['sandbox_merchant_email'];
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Sets the sandbox merchant email.
|
||||||
|
*
|
||||||
|
* @param string $value The value to set.
|
||||||
|
*/
|
||||||
|
public function set_sandbox_merchant_email( string $value ) : void {
|
||||||
|
$this->data['sandbox_merchant_email'] = sanitize_email( $value );
|
||||||
|
}
|
||||||
|
}
|
34
modules/ppcp-settings/src/Data/PaymentSettings.php
Normal file
34
modules/ppcp-settings/src/Data/PaymentSettings.php
Normal file
|
@ -0,0 +1,34 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* PaymentSettings class
|
||||||
|
*
|
||||||
|
* @package WooCommerce\PayPalCommerce\Settings\Data
|
||||||
|
*/
|
||||||
|
|
||||||
|
declare( strict_types = 1 );
|
||||||
|
|
||||||
|
namespace WooCommerce\PayPalCommerce\Settings\Data;
|
||||||
|
|
||||||
|
use RuntimeException;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This class serves as a container for managing the payment settings.
|
||||||
|
*/
|
||||||
|
class PaymentSettings extends AbstractDataModel {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Option key where profile details are stored.
|
||||||
|
*
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
protected const OPTION_KEY = 'woocommerce-ppcp-data-payment-settings';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get default values for the model.
|
||||||
|
*
|
||||||
|
* @return array
|
||||||
|
*/
|
||||||
|
protected function get_defaults() : array {
|
||||||
|
return array();
|
||||||
|
}
|
||||||
|
}
|
34
modules/ppcp-settings/src/Data/StylingSettings.php
Normal file
34
modules/ppcp-settings/src/Data/StylingSettings.php
Normal file
|
@ -0,0 +1,34 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* StylingSettings class
|
||||||
|
*
|
||||||
|
* @package WooCommerce\PayPalCommerce\Settings\Data
|
||||||
|
*/
|
||||||
|
|
||||||
|
declare( strict_types = 1 );
|
||||||
|
|
||||||
|
namespace WooCommerce\PayPalCommerce\Settings\Data;
|
||||||
|
|
||||||
|
use RuntimeException;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This class serves as a container for managing the styling settings.
|
||||||
|
*/
|
||||||
|
class StylingSettings extends AbstractDataModel {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Option key where profile details are stored.
|
||||||
|
*
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
protected const OPTION_KEY = 'woocommerce-ppcp-data-styling-settings';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get default values for the model.
|
||||||
|
*
|
||||||
|
* @return array
|
||||||
|
*/
|
||||||
|
protected function get_defaults() : array {
|
||||||
|
return array();
|
||||||
|
}
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue