├── version ├── src ├── widgets │ ├── views │ │ ├── TextPage.php │ │ ├── FancyPanel.php │ │ ├── OrganizationLink.php │ │ ├── PoweredBy.php │ │ ├── LogoLink.php │ │ ├── faq │ │ │ ├── node.php │ │ │ └── root.php │ │ └── LoginForm.php │ ├── AlertWidget.php │ ├── SidebarMenu.php │ ├── Flashes.php │ ├── Faq.php │ ├── CopyrightYears.php │ ├── UserMenu.php │ ├── FancyPanel.php │ ├── OrganizationLink.php │ ├── PoweredBy.php │ ├── Markdown.php │ ├── SocialLinks.php │ ├── TextPage.php │ ├── LogoLink.php │ └── LoginForm.php ├── views │ ├── debug │ │ ├── summary.php │ │ └── detail.php │ └── settings │ │ └── index.php ├── models │ ├── OrientationInterface.php │ └── Settings.php ├── menus │ ├── AbstractMainMenu.php │ ├── AbstractFooterMenu.php │ ├── AbstractNavbarMenu.php │ ├── AbstractLanguageMenu.php │ ├── AbstractSidebarMenu.php │ ├── NavbarMenu.php │ ├── AbstractMenu.php │ └── MenuInterface.php ├── Module.php ├── FaqAsset.php ├── storage │ ├── SettingsStorageInterface.php │ └── SessionSettingsStorage.php ├── assets │ └── faq │ │ └── js │ │ ├── faq.min.js │ │ └── faq.js ├── GetManagerTrait.php ├── DetailedTheme.php ├── messages │ └── ru │ │ └── hiqdev.thememanager.php ├── debug │ └── Panel.php ├── controllers │ └── SettingsController.php ├── ThemeManager.php └── Theme.php ├── .scrutinizer.yml ├── docs └── readme │ ├── Installation.md │ ├── Configuration.md │ └── Idea.md ├── tests └── _bootstrap.php ├── config ├── i18n.php ├── params.php └── web.php ├── .gitignore ├── .travis.yml ├── phpunit.xml.dist ├── attic ├── AssetConverter.php ├── AssetManager.php └── View.php ├── chkipper.json ├── LICENSE ├── hidev.yml ├── composer.json ├── .php_cs ├── CHANGELOG.md ├── README.md └── history.md /version: -------------------------------------------------------------------------------- 1 | yii2-thememanager 0.4.0 2022-06-28 17:39:58 +0300 a01e793b2bb2e936c520bca06810dbd7e94ec0a9 2 | -------------------------------------------------------------------------------- /src/widgets/views/TextPage.php: -------------------------------------------------------------------------------- 1 | 5 | = $content ?> 6 | -------------------------------------------------------------------------------- /src/widgets/views/FancyPanel.php: -------------------------------------------------------------------------------- 1 |
Please fill out the following fields to login:
15 | 16 | 'login-form', 18 | 'options' => ['class' => 'form-horizontal'], 19 | 'fieldConfig' => [ 20 | 'template' => "{label}\napp\models\User::$users.
44 | No theme was used.
'; 12 | 13 | return; 14 | } ?> 15 |= $theme['class'] ?> |
28 | |
| = $key ?> | 35 |= isset($theme[$key]) ? $theme[$key] : null ?> | 36 |
|---|---|
| = $key ?> | 43 |44 | |