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