wzzwx / yii2-inspinia
Wrapper inspinia theme
Installs: 26
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 2
Forks: 1
Open Issues: 1
Language:CSS
Type:yii2-extension
Requires
- dmstr/yii2-adminlte-asset: ^2.0
- ethercap/watermark: ^1.0
- lkk/yii2-inspinia: ^1.3
- yiisoft/yii2: ^2.0
This package is auto-updated.
Last update: 2025-03-05 15:32:36 UTC
README
inspinia主题的上层封装。
依赖包 https://github.com/lkk/yii2-inspinia。
提供几乎全部inspinia会用到的静态资源的打包。
如需用到Inspinia资源,请优先使用已经打包好的。
命名空间
wzzwx\yii2Inspinia
使用方式
- App的main配置添加如下配置即可
'view' => [
'theme' => [
'class' => 'wzzwx\yii2Inspinia\Theme',
'nowrap' => !YII_DEBUG,
'menuItems' => [
[
'label' => '自动回复管理',
'items' => [
[
'label' => '自动回复消息',
'url' => '/wx-reply',
],
[
'label' => '规则管理',
'url' => '/wx-reply-rule',
],
],
],
[
'label' => 'gii测试',
'url' => '/giitest',
],
// footer 设置
'footer' => [
'replaceTags' => [
'right' => '<b>Version</b> 2.0',
'left' => '<strong>©2018- '.date('Y').' callmewz 京ICP备19042689号-1</strong>',
],
],
],
],
可用配置
- content
匿名函数:function($content, $theme){};
参数为layout重的content部分,和当前主题。
e.g.:
'content' => function($content, $theme) {
if ($theme->nowrap) {
return "<div class=\"p-w-sm\">$content</div>";
}
return $content;
},
注意
- app->user 须有name属性,用于展示
更新:
- 已支持common包中的box样式。