PATH:
home
/
lab2454c
/
caimegroup.com
/
wp-content
/
plugins
/
mailpoet
/
lib
/
API
/
JSON
/
v1
<?php // phpcs:ignore SlevomatCodingStandard.TypeHints.DeclareStrictTypes.DeclareStrictTypesMissing namespace MailPoet\API\JSON\v1; if (!defined('ABSPATH')) exit; use MailPoet\API\JSON\Endpoint as APIEndpoint; use MailPoet\Config\AccessControl; use MailPoet\WP\Functions as WPFunctions; class WoocommerceSettings extends APIEndpoint { public $permissions = [ 'global' => AccessControl::PERMISSION_MANAGE_EMAILS, ]; private $allowedSettings = [ 'woocommerce_email_base_color', ]; /** @var WPFunctions */ private $wp; public function __construct( WPFunctions $wp ) { $this->wp = $wp; } public function set($data = []) { foreach ($data as $option => $value) { if (in_array($option, $this->allowedSettings)) { $this->wp->updateOption($option, $value); } } return $this->successResponse([]); } }
[-] Segments.php
[edit]
[-] Settings.php
[edit]
[-] Forms.php
[edit]
[-] FeatureFlags.php
[edit]
[-] Setup.php
[edit]
[-] index.php
[edit]
[+]
..
[-] AutomatedLatestContent.php
[edit]
[-] SubscriberStats.php
[edit]
[-] WoocommerceSettings.php
[edit]
[-] NewsletterLinks.php
[edit]
[-] AutomaticEmails.php
[edit]
[-] ImportExport.php
[edit]
[-] Subscribers.php
[edit]
[-] Analytics.php
[edit]
[-] DynamicSegments.php
[edit]
[-] Premium.php
[edit]
[-] UserFlags.php
[edit]
[-] Services.php
[edit]
[-] Newsletters.php
[edit]
[-] CustomFields.php
[edit]
[-] SendingTaskSubscribers.php
[edit]
[-] Coupons.php
[edit]
[-] NewsletterTemplates.php
[edit]
[-] SendingQueue.php
[edit]
[-] Mailer.php
[edit]
[-] Tags.php
[edit]