PluginProbe
OttoKit: All-in-One Automation Platform / 1.1.2
OttoKit: All-in-One Automation Platform v1.1.2
1.1.38 1.1.37 1.1.36 1.1.35 1.1.34 1.1.33 1.1.32 1.1.31 1.1.30 1.1.29 1.1.28 1.1.27 1.1.9 trunk 1.0.10 1.0.11 1.0.12 1.0.13 1.0.14 1.0.15 1.0.16 1.0.17 1.0.18 1.0.19 1.0.20 All 124 releases
suretriggers / suretriggers.php
suretriggers.php
34 lines 924 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Plugin Name: OttoKit (Formerly SureTriggers)
4 * Description: OttoKit helps people automate their work by integrating multiple apps and plugins, allowing them to share data and perform tasks automatically.
5 * Author: OttoKit (Formerly SureTriggers)
6 * Author URI: https://ottokit.com/
7 * Plugin URI: https://ottokit.com/
8 * Text Domain: suretriggers
9 * Domain Path: /languages
10 * License: GPLv3
11 * License URI: https://www.gnu.org/licenses/gpl-3.0.html
12 * Version: 1.1.2
13 * Requires at least: 5.4
14 * Requires PHP: 5.6
15 *
16 * @package suretriggers
17 */
18
19 /**
20 * Plugin main file
21 */
22
23 use SureTriggers\Loader;
24
25 require_once 'autoloader.php';
26 require_once 'functions.php';
27
28 define( 'SURE_TRIGGERS_FILE', __FILE__ );
29
30 /**
31 * Kicking this off by calling 'get_instance()' method
32 */
33 $loader = Loader::get_instance();
34