# fluent-cart/1.6.4/app/Modules/Subscriptions/Http/Handlers/AdminMenuHandler.php

FluentCart A New Era of eCommerce – Faster, Lighter, and Simpler, version 1.6.4. 18 lines.

- Page: https://pluginprobe.com/plugins/fluent-cart/1.6.4/code/app/Modules/Subscriptions/Http/Handlers/AdminMenuHandler.php
- Raw: https://pluginprobe.com/plugins/fluent-cart/1.6.4/raw/app/Modules/Subscriptions/Http/Handlers/AdminMenuHandler.php
- Modified: 2026-04-15T13:10: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-cart/1.6.4/code/app/Modules/Subscriptions/Http/Handlers/AdminMenuHandler.php#L10-L20`.

```php
<?php

namespace FluentCart\App\Modules\Subscriptions\Http\Handlers;

use FluentCart\App\Vite;
use FluentCart\Framework\Support\Arr;

class AdminMenuHandler
{
    public function register()
    {
        add_action('fluent_cart/loading_app', function () {
            Vite::enqueueScript('fluent_cart_subscriptions', 'admin/Modules/Subscriptions/subscription.js');
        });
    }
}


```
