suretriggers
Last commit date
app
4 weeks ago
assets
2 months ago
languages
2 weeks ago
src
2 weeks ago
autoloader.php
3 years ago
changelog.txt
2 weeks ago
functions.php
1 month ago
readme.txt
2 weeks ago
suretriggers.php
2 weeks ago
tailwind.config.js
6 months ago
suretriggers.php
34 lines
| 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.31 |
| 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 |