PluginProbe
Zoho Flow – No-Code Workflow Automation / trunk
Zoho Flow – No-Code Workflow Automation vtrunk
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 / dir-integrations.php

dir-integrations.php in Zoho Flow – No-Code Workflow Automation trunk, at dir-integrations.php

57 lines 3.2 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 if ( ! defined( 'ABSPATH' ) ) {
4 exit; // Exit if accessed directly.
5 }
6
7 $zoho_flow_dir_integrations_config = array (
8 array (
9 'name' => esc_html__('WooCommerce', 'zoho-flow'),
10 'id' => 'woocommerce',
11 'gallery_app_link' => 'woocommerce',
12 'description' => esc_html__('Use WooCommerce to create and manage an e-commerce platform on your WordPress site. By integrating WooCommerce with your favourite applications, you will be able to create and share invoices automatically when someone makes a purchase on your e-commerse site.', 'zoho-flow'),
13 'icon_file' => 'woocommerce.png',
14 'class_test' => 'WooCommerce',
15 ),
16 array (
17 'name' => esc_html__('MemberPress', 'zoho-flow'),
18 'id' => 'memberpress',
19 'gallery_app_link' => 'memberpress',
20 'description' => esc_html__('Use MemberPress to manage and track membership subscriptions and sell digital download products on your WordPress site. Integrate MemberPress with other applications to share content with your customers based on their membership level.', 'zoho-flow'),
21 'icon_file' => 'memberpress.png',
22 'class_test' => 'MeprCtrlFactory',
23 ),
24 array (
25 'name' => esc_html__('SureCart', 'zoho-flow'),
26 'id' => 'surecart',
27 'gallery_app_link' => 'surecart',
28 'description' => esc_html__('Use SureCart to set up and manage an online store on your WordPress site. By integrating SureCart with your favourite applications, you will be able to make changes to your inventory when a sale is completed on your e-commerce site.', 'zoho-flow'),
29 'icon_file' => 'surecart.png',
30 'class_test' => 'SureCart',
31 ),
32 array (
33 'name' => esc_html__('Bit Form', 'zoho-flow'),
34 'id' => 'bit-form',
35 'gallery_app_link' => 'bit-form',
36 'description' => esc_html__('Use Bit Form to build different types of contact forms on your WordPress site. By integrating Bit Form with other applications, you\'ll be able to automate workflows based on your form entries.', 'zoho-flow'),
37 'icon_file' => 'bit-form.png',
38 'class_test' => 'BitCode\BitForm\API\BitForm_Public\BitForm_Public',
39 ),
40 array (
41 'name' => esc_html__('Groundhogg', 'zoho-flow'),
42 'id' => 'groundhogg',
43 'gallery_app_link' => 'groundhogg',
44 'description' => esc_html__('Use Groundhogg to create marketing funnels, manage email campaigns, send newsletters, and more on your WordPress site. By integrating Groundhogg with other applications, you can create new contacts automatically whenever a new lead signs up in your website.', 'zoho-flow'),
45 'icon_file' => 'groundhogg.png',
46 'class_test' => 'Groundhogg\Admin\Welcome\Welcome_Page',
47 ),
48 array (
49 'name' => esc_html__('Beamer', 'zoho-flow'),
50 'id' => 'beamer',
51 'gallery_app_link' => 'beamer',
52 'description' => esc_html__('Use Beamer to announce news, latest features, and other updates on your WordPress site. By integrating Beamer with your favourite applications, you can get instant notifications whenever a new announcement is made.', 'zoho-flow'),
53 'icon_file' => 'beamer.png',
54 'class_test' => 'BeamerSettings',
55 )
56 );
57