| 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 |
|
| 9 |
// Disable notices when Pro is active |
| 10 |
add_action('admin_init', function () { |
| 11 |
if ( |
| 12 |
(function_exists('forumax_is_premium') && forumax_is_premium()) |
| 13 |
|| |
| 14 |
(function_exists('forumax_is_promax') && forumax_is_promax()) |
| 15 |
) { |
| 16 |
Remote_Notice_Client::disable('Forumax'); |
| 17 |
return; |
| 18 |
} |
| 19 |
|
| 20 |
|
| 21 |
Remote_Notice_Client::init('Forumax', [ |
| 22 |
'api_url' => 'https://manage.spider-themes.net/wp-json/html-notice-widget/v1/content/forumax', |
| 23 |
]); |
| 24 |
}); |
| 25 |
|