# fluent-community/2.7.7/Modules/modules_init.php

FluentCommunity – Ultra-Fast High-Performance Social Network, Community, LMS &amp; Online Courses, version 2.7.7. 15 lines.

- Page: https://pluginprobe.com/plugins/fluent-community/2.7.7/code/Modules/modules_init.php
- Raw: https://pluginprobe.com/plugins/fluent-community/2.7.7/raw/Modules/modules_init.php
- Modified: 2026-05-20T14:27:08+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/fluent-community/2.7.7/code/Modules/modules_init.php#L10-L20`.

```php
<?php

defined('ABSPATH') || exit;

add_action('fluent_community/portal_loaded', function ($app) {
    (new \FluentCommunity\Modules\FeaturesHandler())->register($app);

    // Load the Integrations
    (new \FluentCommunity\Modules\Integrations\Integrations())->register($app);
    (new \FluentCommunity\Modules\Migrations\MigrationModule())->register($app);
    (new \FluentCommunity\Modules\Theming\TemplateLoader())->register();

    (new \FluentCommunity\Modules\PushNotification\PushNotificationModule())->register();
});

```
