IframeTabProvider.php
2.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<?php
namespace Mosiboom\DcatIframeTab;
use Dcat\Admin\Admin;
use Dcat\Admin\Grid;
use Dcat\Admin\Layout\Content;
use Illuminate\Support\ServiceProvider;
class IframeTabProvider extends ServiceProvider
{
/**
* Register services.
*
* @return void
*/
public function register()
{
//注册 Dcat的容器事件
if (config('iframe_tab.enable')) {
$this->app->resolving(Content::class, function ($content, $app) {
//设置view 为 iframe.full-content
$content->view('iframe-tab::full-content');
if(strpos(request()->getUri(),'auth/login') !== false){
#退出登录不记录当前页面
session()->forget('url.intended');
Admin::script(<<<JS
if (window != top)
top.location.href = location.href;
JS
);
}
});
Content::resolving(function (Content $content) {
//设置view 为 iframe.full-content
$content->view('iframe-tab::full-content');
if(strpos(request()->getUri(),'auth/login') !== false){
Admin::script(<<<JS
if (window != top)
top.location.href = location.href;
JS
);
}
});
Grid::resolving(function (Grid $grid) {
$grid->setDialogFormDimensions(config('iframe_tab.dialog_area_width'), config('iframe_tab.dialog_area_height'));
});
}
}
/**
* Bootstrap services.
*
* @return void
*/
public function boot()
{
$this->loadViewsFrom(__DIR__ . '/resource/views', 'iframe-tab');
$this->loadRoutesFrom(__DIR__ . '/routes.php');
$this->publishes([
__DIR__ . '/assets/js/compress' => public_path('vendor/iframe-tab/js'),
__DIR__ . '/assets/css' => public_path('vendor/iframe-tab/css'),
], 'iframe-tab');
$this->publishes([
__DIR__ . '/resource/views' => resource_path('views/vendor/iframe-tab'),
], 'iframe-tab.view');
$this->publishes([
__DIR__ . '/iframe_tab.php' => config_path('iframe_tab.php'),
], 'iframe-tab.config');
}
}