| @@ -1,8 +1,13 @@ | ||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | +defined('ABSPATH') || exit; | |
| 4 | + | |
| 3 | 5 | add_action('fluent_community/portal_loaded', function ($app) { |
| 4 | 6 | (new \FluentCommunity\Modules\FeaturesHandler())->register($app); |
| 5 | 7 | |
| 6 | 8 | // Load the Integrations |
| 7 | - (new \FluentCommunity\Modules\Integrations\Integrations())->register(); | |
| 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(); | |
| 8 | 13 | }); |