Yii2 AdminLte Iframe Mode
The preferred way to install this extension is through composer.
Either run
php composer.phar require kriss/yii2-adminlte-iframe-mode -vvv
or add
"kriss/yii2-adminlte-iframe-mode": "*"
to the require section of your composer.json
file.
- 在基础控制器中增加
behavior
public function behaviors()
{
$behaviors = parent::behaviors();
$behaviors['iframe_layout'] = [
'class' => IframeLinkFilter::className(),
//'layout' => '@app/views/layouts/main-content', // 使用该参数自定义布局
];
return $behaviors;
}
- 在默认的布局文件
(main.php)
中增加Asset
\kriss\iframeLayout\IframeAsset::register($this);
-
在上面的操作基础上
-
在某个控制器,比如
SiteController
中增加action
public function actions()
{
return [
// 其他 actions
'iframe-mode-change' => [
'class' => IframeModeChangeAction::className(),
]
];
}
- 增加切换模式的链接按钮
<?= Html::a((IframeModeChangeAction::isIframeMode() ? '关闭' : '开启') . '标签页模式',
['/site/iframe-mode-change'], [
'data-method' => 'post',
'class' => 'dropdown-menu-item'
]) ?>
- 修改原
Asset
引入方式
if (IframeModeChangeAction::isIframeMode()) {
IframeAsset::register($this);
}