| Server IP : 104.21.21.239 / Your IP : 216.73.216.76 Web Server : Apache/2.4.68 (Amazon Linux) OpenSSL/3.5.5 System : Linux ip-172-31-69-123.ec2.internal 6.1.176-223.369.amzn2023.x86_64 #1 SMP PREEMPT_DYNAMIC Fri Jul 24 13:34:27 UTC 2026 x86_64 User : ec2-user ( 1000) PHP Version : 8.4.23 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/etdchicago/wp-content/plugins/forminator/addons/ |
Upload File : |
<?php
/**
* Class Forminator_Integration_Default_Holder
* Placeholder for nonexistent PRO Integration
*
* @since 1.1
*/
class Forminator_Integration_Default_Holder extends Forminator_Integration {
protected static $instance = null;
protected $_slug = '';
protected $_version = '1.0';
protected $_min_forminator_version = PHP_INT_MAX; // make it un-activable.
protected $_short_title = '';
protected $_title = '';
protected $_url = '';
/**
* Dynamically set fields form array
*
* @since 1.1
*
* @param $properties
*
* @return $this
*/
public function from_array( $properties ) {
foreach ( $properties as $field => $value ) {
if ( property_exists( $this, $field ) ) {
$this->$field = $value;
}
}
return $this;
}
/**
* Mark non existent integration as not connected always
*
* @since 1.1
* @return bool
*/
public function is_connected() {
return false;
}
/**
* Authorized Callback
*
* @return bool
*/
public function is_authorized() {
return false;
}
/**
* Mark non existent integration as form not connected always
*
* @since 1.1
* @param int $module_id Form ID.
* @param string $module_slug Module type.
* @param bool $check_lead Check is lead connected or not.
* @return bool
*/
public function is_module_connected( $module_id, $module_slug = 'form', $check_lead = false ) {
return false;
}
/**
* Make this not activable
*
* @since 1.1
* @return bool
*/
public function check_is_activable() {
return false;
}
}