| 1 |
<?php |
| 2 |
require_once __DIR__ . '/asking-for-review.php'; |
| 3 |
require_once __DIR__ . '/offer.php'; |
| 4 |
require_once __DIR__ . '/bbPress-required.php'; |
| 5 |
require_once __DIR__ . '/deactivate-other-forum-plugins.php'; |
| 6 |
require_once __DIR__ . '/class-remote-notice-client.php'; |
| 7 |
require_once __DIR__ . '/update-notice.php'; |
| 8 |
require_once __DIR__ . '/theme-compatibility.php'; |
| 9 |
|
| 10 |
add_action( 'plugins_loaded', function() { |
| 11 |
if ( class_exists( 'Noticepilot_Remote_Notice_Client' ) ) { |
| 12 |
Noticepilot_Remote_Notice_Client::init( 'Forumax', [ |
| 13 |
'api_url' => 'https://manage.spider-themes.net/wp-json/noticepilot/v1/content/forumax', |
| 14 |
'plugin_version' => FORUMAX_VERSION, |
| 15 |
'is_pro' => (forumax_is_premium() || forumax_is_promax()), |
| 16 |
]); |
| 17 |
} |
| 18 |
}); |
| 19 |
|