yiister / yii2-gentelella

Free admin template for backend
MIT License
275 stars 113 forks source link

Update Panel.php #23

Closed SamMousa closed 7 years ago

SamMousa commented 7 years ago

Make $tools public to allow directly adding items to the panels menu. Instead of just the headerMenu.

image

fps01 commented 7 years ago

@SamMousa hello! Thanks for PR. Could you wrote an usage example for http://gentelella.yiister.ru/site/panel page?

SamMousa commented 7 years ago
<?php
        Panel::begin(
            [
                'header' => 'Panel with extra tool menu items',
                'icon' => 'cog',
                'tools' => [
                    [
                        'label' => 'The first item',
                        'url' => '#',
                    ],
                    [
                        'label' => 'The second item',
                        'url' => '#',
                    ],
                ],
            ]
        )
        ?>