vangogogo/yii2-bs4

Yii2 Inspinia Tpl

Installs: 1

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 0

Forks: 1

Language:CSS

Type:yii2-extension

dev-master 2023-11-13 06:30 UTC

This package is auto-updated.

Last update: 2024-04-13 07:31:55 UTC


README

  • Инициализация шаблона
'components' => [
    'view' => [
        'theme' => [
            'class' => 'Henakel\Yii2InspiniaTpl\Theme',
            'nowrap' => !YII_DEBUG,
            'menuItems' => [
                [
                    'icon' => 'cogs',
                    'noticeLabel' => '23',
                    'noticeType' => 'danger',
                    'label' => 'Ext',
                    'options' => ['class' => 'nav-header'],
                    'template' => '<div class="dropdown profile-element"><div class="logo-full"><a href="/">Exchange</a></div></div>'
                ],
                ['label' => 'Ссылка 2', 'url' => ['site/index']],
                [
                    'icon' => 'cogs',
                    'noticeLabel' => '23',
                    'noticeType' => 'danger',
                    'label' => 'Ссылка 1',
                    'url' => ['/site/about']
                ],
                [
                    'icon' => 'cogs',
                    'noticeLabel' => '23',
                    'noticeType' => 'danger',
                    'label' => 'Ссылка 2',
                    'url' => ['/site/contact']
                ],

                [
                    'label' => 'Элемент 1',
                    'icon' => 'cogs',
                    'noticeLabel' => '23',
                    'noticeType' => 'warning',
                    'options' => ['class' => 'dropdown'],
                    'items' => [
                        [
                            'icon' => 'cogs',
                            'noticeLabel' => '23',
                            'noticeType' => 'danger',
                            'label' => 'Ссылка 1',
                            'url' => ['/site/about']
                        ],
                        [
                            'icon' => 'cogs',
                            'noticeLabel' => '23',
                            'noticeType' => 'primary',
                            'label' => 'Ссылка 2',
                            'url' => '#',
                            'items' => [
                                [
                                    'icon' => 'cogs',
                                    'noticeLabel' => '23',
                                    'noticeType' => 'danger',
                                    'label' => 'Ссылка 1',
                                    'url' => ['/site/about']
                                ],
                                [
                                    'icon' => 'cogs',
                                    'noticeLabel' => '23',
                                    'noticeType' => 'danger',
                                    'label' => 'Ссылка 2',
                                    'url' => ['/site/contact']
                                ],
                            ]
                        ],
                    ]
                ],

            ],
            // footer
            'footer' => [
                'replaceTags' => [
                    'right' => '<b>Version</b> 2.0',
                    'left' => '<strong>&copy;2008- ' . date('Y') . '</strong>',
                ],
            ],
            'left' => [
                'replaceTags' => [
                    'dropdown' => 'fg dsfg dsfg dsfg sdg dsf g',
                ],
            ],
            'header' => [
                'replaceTags' => [
                    'nav_right' => '111'
                ]
            ]
        ],
    ],
],