| 1 |
<?php |
| 2 |
|
| 3 |
defined('ABSPATH') || exit; |
| 4 |
|
| 5 |
add_action('fluent_community/portal_loaded', function ($app) { |
| 6 |
(new \FluentCommunity\Modules\FeaturesHandler())->register($app); |
| 7 |
|
| 8 |
// Load the Integrations |
| 9 |
(new \FluentCommunity\Modules\Integrations\Integrations())->register($app); |
| 10 |
(new \FluentCommunity\Modules\Migrations\MigrationModule())->register($app); |
| 11 |
(new \FluentCommunity\Modules\Theming\TemplateLoader())->register(); |
| 12 |
(new \FluentCommunity\Modules\PushNotification\PushNotificationModule())->register(); |
| 13 |
}); |
| 14 |
|