| 1 |
<?php |
| 2 |
/* |
| 3 |
Plugin Name: Zoho Flow |
| 4 |
Plugin URI: https://www.zohoflow.com/?utm_source=wordpress&utm_campaign=plugin-uri&utm_medium=link |
| 5 |
Description: Zoho Flow helps you integrate your favorite Wordpress plugins with hundreds of popular business apps like Zoho CRM, Mailchimp, HubSpot, and Eventbrite. Save hours of time at work by automatically syncing data between the plugins and the apps you use. |
| 6 |
Author: Zoho Flow |
| 7 |
Author URI: https://www.zohoflow.com/?utm_source=wordpress&utm_campaign=author-uri&utm_medium=link |
| 8 |
Text Domain: zoho-flow |
| 9 |
Requires at least: 5.0 |
| 10 |
Requires PHP: 7.0.0 |
| 11 |
Domain Path: /languages/ |
| 12 |
Version: 2.14.4 |
| 13 |
License: GPLv2 or later |
| 14 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html |
| 15 |
*/ |
| 16 |
|
| 17 |
if ( ! defined( 'ABSPATH' ) ) { |
| 18 |
exit; // Exit if accessed directly. |
| 19 |
} |
| 20 |
|
| 21 |
define( 'WP_ZOHO_FLOW_PLUGIN', __FILE__ ); |
| 22 |
|
| 23 |
define( 'WP_ZOHO_FLOW_PLUGIN_DIR', untrailingslashit( dirname( WP_ZOHO_FLOW_PLUGIN ) ) ); |
| 24 |
|
| 25 |
define( 'WP_ZOHO_FLOW_PLUGIN_BASENAME', plugin_basename( WP_ZOHO_FLOW_PLUGIN ) ); |
| 26 |
|
| 27 |
define( 'WP_ZOHO_FLOW_PLUGIN_NAME', trim( dirname( WP_ZOHO_FLOW_PLUGIN_BASENAME ), '/' ) ); |
| 28 |
|
| 29 |
define ( 'WP_ZOHO_FLOW_WEBHOOK_POST_TYPE', 'zoho_flow_webhooks'); |
| 30 |
|
| 31 |
define ( 'WP_ZOHO_FLOW_API_KEY_POST_TYPE', 'zoho_flow_api_keys'); |
| 32 |
|
| 33 |
define ( 'WP_ZOHO_FLOW_DEBUG', false); |
| 34 |
|
| 35 |
require_once WP_ZOHO_FLOW_PLUGIN_DIR . '/settings.php'; |
| 36 |
|