Current path: home/webdevt/www/wdp/wp-content/plugins/caldera-forms/includes/cf-pro-client/
?? Go up: /home/webdevt/www/wdp/wp-content/plugins/caldera-forms/includes
<?php
/**
* Start Caldera Forms Pro API client
*
* NOTE: This file is included directly and MUST be PHP5.2 compatible. Hence why boostrap-cf-pro.php is a separate, non-PHP 5.2 compatible file.
*/
add_action('caldera_forms_includes_complete', 'caldera_forms_pro_client_init', 1);
remove_action('caldera_forms_includes_complete', 'caldera_forms_pro_init', 2);
/**
* Initialize Caldera Forms Pro API client if possible
*
* @since 1.5.8
*/
function caldera_forms_pro_client_init()
{
if ( !version_compare(PHP_VERSION, '5.6.0', '>=') ) {
$admin = new Caldera_Forms_Admin_Pro();
$admin->add_hooks();
define('CF_PRO_NOT_LOADED', true);
} else {
if ( !defined('CF_PRO_VER') ) {
define('CF_PRO_LOADED', true);
/**
* Define Plugin basename for updater
*
* @since 0.2.0
*/
define('CF_PRO_BASENAME', plugin_basename(__FILE__));
/**
* Caldera Forms Pro Client Version
*/
define('CF_PRO_VER', CFCORE_VER);
include_once dirname(__FILE__) . '/bootstrap-cf-pro.php';
register_activation_hook(__FILE__, 'caldera_forms_pro_activation_hook_callback');
}
}
}