| Server IP : 213.186.33.4 / Your IP : 216.73.216.146 Web Server : Apache System : Linux webm005.cluster103.gra.hosting.ovh.net 6.18.39-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Tue Jul 21 12:03:15 CEST 2026 x86_64 User : karinebmkh ( 644538) PHP Version : 8.4.22 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/karinebmkh/www2/wp-content/plugins/mailchimp-for-wp/integrations/custom/ |
Upload File : |
<?php
defined('ABSPATH') or exit;
/**
* Class MC4WP_Custom_Integration
* @ignore
*/
class MC4WP_Custom_Integration extends MC4WP_Integration
{
/**
* @var string
*/
protected $checkbox_name = 'mc4wp-subscribe';
/**
* @var string
*/
public $name = "Custom";
/**
* @var string
*/
public $description = "Integrate with custom third-party forms.";
/**
* Add hooks
*/
public function add_hooks()
{
add_action('init', array( $this, 'listen'), 50);
}
/**
* Maybe fire a general subscription request
*/
public function listen()
{
if (! $this->checkbox_was_checked()) {
return false;
}
$data = $this->get_data();
// don't run for CF7 or Events Manager requests
// (since they use the same "mc4wp-subscribe" trigger)
$disable_triggers = array(
'_wpcf7' => '',
'action' => 'booking_add'
);
foreach ($disable_triggers as $trigger => $trigger_value) {
if (isset($data[ $trigger ])) {
$value = $data[ $trigger ];
// do nothing if trigger value is optional
// or if trigger value matches
if (empty($trigger_value) || $value === $trigger_value) {
return false;
}
}
}
// run!
return $this->process();
}
/**
* Process custom form
*
* @return bool|string
*/
public function process()
{
$parser = new MC4WP_Field_Guesser($this->get_data());
$data = $parser->combine(array( 'guessed', 'namespaced' ));
// do nothing if no email was found
if (empty($data['EMAIL'])) {
$this->get_log()->warning(sprintf('%s > Unable to find EMAIL field.', $this->name));
return false;
}
return $this->subscribe($data);
}
/**
* @return bool
*/
public function is_installed()
{
return true;
}
/**
* @return array
*/
public function get_ui_elements()
{
return array( 'lists', 'double_optin', 'update_existing', 'replace_interests' );
}
}