PluginProbe
Zoho Flow – No-Code Workflow Automation / 2.8.0
Zoho Flow – No-Code Workflow Automation v2.8.0
2.14.4 trunk 1.0.0 1.0.1 1.0.2 1.0.3 1.0.4 1.1.0 1.1.1 1.1.2 1.1.3 1.1.4 1.1.5 1.1.6 1.2.0 1.2.1 1.3.0 1.3.1 1.3.2 1.3.3 1.4.0 1.4.1 1.4.2 1.4.3 1.4.4 All 56 releases
zoho-flow / zoho-flow.php

zoho-flow.php in Zoho Flow – No-Code Workflow Automation 2.8.0, at zoho-flow.php

34 lines 1.2 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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: 4.4
10 Requires PHP: 7.0.0
11 Domain Path: /languages/
12 Version: 2.8.0
13 */
14
15 if ( ! defined( 'ABSPATH' ) ) {
16 exit; // Exit if accessed directly.
17 }
18
19 define( 'WP_ZOHO_FLOW_PLUGIN', __FILE__ );
20
21 define( 'WP_ZOHO_FLOW_PLUGIN_DIR', untrailingslashit( dirname( WP_ZOHO_FLOW_PLUGIN ) ) );
22
23 define( 'WP_ZOHO_FLOW_PLUGIN_BASENAME', plugin_basename( WP_ZOHO_FLOW_PLUGIN ) );
24
25 define( 'WP_ZOHO_FLOW_PLUGIN_NAME', trim( dirname( WP_ZOHO_FLOW_PLUGIN_BASENAME ), '/' ) );
26
27 define ( 'WP_ZOHO_FLOW_WEBHOOK_POST_TYPE', 'zoho_flow_webhooks');
28
29 define ( 'WP_ZOHO_FLOW_API_KEY_POST_TYPE', 'zoho_flow_api_keys');
30
31 define ( 'WP_ZOHO_FLOW_DEBUG', false);
32
33 require_once WP_ZOHO_FLOW_PLUGIN_DIR . '/settings.php';
34