images
2 years ago
hustle-sendinblue-api.php
5 months ago
hustle-sendinblue-form-hooks.php
5 months ago
hustle-sendinblue-form-settings.php
5 months ago
hustle-sendinblue.php
2 years ago
sendinblue.php
5 months ago
sendinblue.php
19 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Main file for Sendin Blue |
| 4 | * |
| 5 | * @package Hustle |
| 6 | */ |
| 7 | |
| 8 | /** |
| 9 | * Direct Load |
| 10 | */ |
| 11 | require_once __DIR__ . '/hustle-sendinblue.php'; |
| 12 | require_once __DIR__ . '/hustle-sendinblue-form-settings.php'; |
| 13 | require_once __DIR__ . '/hustle-sendinblue-form-hooks.php'; |
| 14 | require_once __DIR__ . '/hustle-sendinblue-api.php'; |
| 15 | if ( '1.0' === get_option( 'hustle_provider_sendinblue_version' ) ) { |
| 16 | Hustle_SendinBlue::get_instance()->slient_update_api(); |
| 17 | } |
| 18 | Hustle_Providers::get_instance()->register( 'Hustle_SendinBlue' ); |
| 19 |