Skip to content

Menu items for Guests

Choose a tag to compare

@naffiq naffiq released this 30 Oct 09:41
· 153 commits to master since this release

BridgeModule now has guestMenu option, which allows you to define links in admin panel menu for guest users.
It's a plain array, which is similar to menu option:

<?php

return [
    // ... your config
    'modules' => [
        'admin' => [
            'class' => '\naffiq\bridge\BridgeModule',
            'guestMenu' => [
                [
                    'title' => 'Login',
                    'url' => ['/user/login/'],
                    'active' => ['module' => 'user'],
                    'icon' => 'user'
                ]
            ]
    ]
];