| 1 |
<?php |
| 2 |
/** |
| 3 |
* Plugin Name: OttoKit |
| 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 |
| 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.20 |
| 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 |
|