| Server IP : 52.25.153.185 / Your IP : 216.73.216.49 Web Server : Apache System : Linux ip-172-26-6-158 5.10.0-45-cloud-amd64 #1 SMP Debian 5.10.259-1 (2026-07-02) x86_64 User : daemon ( 1) PHP Version : 8.1.10 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /bitnami/wordpress/wp-content/plugins/fluent-crm/ |
Upload File : |
<?php defined('ABSPATH') or die;
/**
* Plugin Name: FluentCRM - Marketing Automation For WordPress
* Plugin URI: https://fluentcrm.com
* Description: CRM and Email Newsletter Plugin for WordPress
* Version: 3.2.0
* Author: WP Email Newsletter Team - FluentCRM
* Author URI: https://fluentcrm.com
* License: GPLv2 or later
* License URI: https://www.gnu.org/licenses/gpl-2.0.html
* Text Domain: fluent-crm
* Domain Path: /language
*/
if (defined('FLUENTCRM')) {
return;
}
define('FLUENTCRM', 'fluentcrm');
define('FLUENTCRM_PLUGIN_URL', plugin_dir_url(__FILE__));
define('FLUENTCRM_PLUGIN_PATH', plugin_dir_path(__FILE__));
define('FLUENTCRM_PLUGIN_VERSION', '3.2.0');
define('FLUENTCRM_MIN_PRO_VERSION', '3.2.0');;
define('FLUENTCRM_FRAMEWORK_VERSION', 4);
/**
* Version of the admin-app module contract that addon plugins build against:
* the bare specifiers in the import map (AdminMenu::printModuleImportMap()),
* the exports of resources/admin/shared/ui.js, and the JS filters an addon may
* hook. Addons must gate their admin-app enqueue on this constant so a core
* downgrade skips their UI instead of white-screening the admin.
*
* Bump only for a breaking change to that surface.
*/
define('FLUENTCRM_MODULE_API', 2);
define('FLUENTCRM_DB_VERSION', '2.10.30');
define('FLUENTCRM_CORE_FRAMEWORK_VERSION', 3);
define('FLUENT_CRM_STARTING_TIME', microtime(true));
define('FC_TEMPLATE_API_DOMAIN', 'https://fluentcrm.com');
if (!defined('FLUENTCRM_UPLOAD_DIR')) {
define('FLUENTCRM_UPLOAD_DIR', '/fluentcrm');
}
if (!defined('FLUENTCRM_EXTERNAL_URL_PARAM')) {
define('FLUENTCRM_EXTERNAL_URL_PARAM', 'fluentcrm');
}
require __DIR__ . '/vendor/autoload.php';
call_user_func(function ($bootstrap) {
$bootstrap(__FILE__);
}, require(__DIR__ . '/boot/app.php'));
add_filter('plugin_row_meta', 'fluentcrm_plugin_row_meta', 10, 2);
function fluentcrm_plugin_row_meta($links, $file)
{
if ('fluent-crm/fluent-crm.php' == $file) {
$row_meta = array(
'docs' => '<a rel="noopener" href="https://fluentcrm.com/docs/" style="color: #23c507;font-weight: 600;" aria-label="' . esc_attr(esc_html__('View FluentCRM Documentation', 'fluent-crm')) . '" target="_blank">' . esc_html__('Docs & FAQs', 'fluent-crm') . '</a>',
'support' => '<a rel="noopener" href="https://wpmanageninja.com/support-tickets/#/" style="color: #23c507;font-weight: 600;" aria-label="' . esc_attr(esc_html__('Get Support', 'fluent-crm')) . '" target="_blank">' . esc_html__('Support', 'fluent-crm') . '</a>',
'developer_docs' => '<a rel="noopener" href="https://developers.fluentcrm.com" style="color: #23c507;font-weight: 600;" aria-label="' . esc_attr(esc_html__('Developer Docs', 'fluent-crm')) . '" target="_blank">' . esc_html__('Developer Docs', 'fluent-crm') . '</a>',
);
if (!defined('FLUENTCAMPAIGN')) {
$row_meta['pro'] = '<a rel="noopener" href="https://fluentcrm.com" style="color: #7742e6;font-weight: bold;" aria-label="' . esc_attr(esc_html__('Upgrade to Pro', 'fluent-crm')) . '" target="_blank">' . esc_html__('Upgrade to Pro', 'fluent-crm') . '</a>';
}
return array_merge($links, $row_meta);
}
return (array)$links;
}