# fluent-community/1.0.95/app/Hooks/actions.php

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

- Page: https://pluginprobe.com/plugins/fluent-community/1.0.95/code/app/Hooks/actions.php
- Raw: https://pluginprobe.com/plugins/fluent-community/1.0.95/raw/app/Hooks/actions.php
- Modified: 2024-11-12T14:48: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/1.0.95/code/app/Hooks/actions.php#L10-L20`.

```php
<?php

if (!defined('ABSPATH')) exit; // Exit if accessed directly

/**
 * @var $app FluentCommunity\Framework\Foundation\Application
 */

(new \FluentCommunity\App\Hooks\Handlers\PortalHandler())->register();
(new \FluentCommunity\App\Hooks\Handlers\PortalSettingsHandler())->register();
(new \FluentCommunity\App\Hooks\Handlers\NotificationEventHandler())->register();
(new \FluentCommunity\App\Hooks\Handlers\EmailNotificationHandler())->register();
(new \FluentCommunity\App\Hooks\Handlers\ActivityMonitorHandler())->register();
(new \FluentCommunity\App\Hooks\Handlers\Scheduler())->register();
(new \FluentCommunity\App\Hooks\Handlers\CleanupHandler())->register();

// Rate limit handler
(new \FluentCommunity\App\Hooks\Handlers\RateLimitHandler())->register();


add_action('init', function () {
    if (!isset($_REQUEST['testx'])) {
        return;
    }

});

```
