| Server IP : 38.190.208.107 / Your IP : 216.73.217.46 Web Server : nginx/1.28.1 System : Linux ht2026040333114 6.1.0-10-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.37-1 (2023-07-03) x86_64 User : root ( 0) PHP Version : 8.2.28 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv,eval,assert,passthru,system,exec,shell_exec,popen,proc_open MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /www/wwwroot/wp.11/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', [ $this, 'listen' ], 50);
}
/**
* Was the integration checkbox checked?
*
* @return bool
*/
public function checkbox_was_checked()
{
$data = $this->get_data();
$value = isset($data[ $this->checkbox_name ]) ? $data[ $this->checkbox_name ] : '';
$truthy_values = [ 1, '1', 'yes', true, 'true', 'y' ];
return in_array($value, $truthy_values, true);
}
/**
* Maybe fire a general subscription request
*
* @return bool|string
*/
public function listen()
{
if (! $this->checkbox_was_checked()) {
return false;
}
// ignore requests from bots, crawlers and link previews
if (empty($_SERVER['HTTP_USER_AGENT']) || preg_match('/bot|crawl|spider|seo|lighthouse|facebookexternalhit|preview/i', $_SERVER['HTTP_USER_AGENT'])) {
return false;
}
// ignore requests without an HTTP referrer
if (empty($_SERVER['HTTP_REFERER'])) {
return false;
}
// ignore requests where HTTP Referer does not contain hostname from home_url
$site_hostname = parse_url(get_home_url(), PHP_URL_HOST);
if (strpos($_SERVER['HTTP_REFERER'], $site_hostname) === false) {
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 = [
'_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([ '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 [ 'lists', 'double_optin', 'update_existing', 'replace_interests' ];
}
}