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

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

- Page: https://pluginprobe.com/plugins/fluent-community/2.10.01/code/Modules/modules_init.php
- Raw: https://pluginprobe.com/plugins/fluent-community/2.10.01/raw/Modules/modules_init.php
- Modified: 2026-09-03T15:28:12+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.10.01/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();
});

```
