-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathGridViewServiceProvider.php
123 lines (102 loc) · 2.82 KB
/
GridViewServiceProvider.php
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<?php
namespace Itstructure\GridView;
use Illuminate\Support\Facades\Blade;
use Illuminate\Support\ServiceProvider;
use Itstructure\GridView\Commands\PublishCommand;
/**
* Class GridViewServiceProvider
* @package Itstructure\GridView
*/
class GridViewServiceProvider extends ServiceProvider
{
public function register()
{
$this->registerCommands();
}
public function boot()
{
// Loading settings
$this->loadViews();
$this->loadTranslations();
// Publish settings
$this->publishViews();
$this->publishTranslations();
// Directives
require_once __DIR__ . '/functions.php';
Blade::directive('gridView', function ($config) {
return "<?php echo grid_view($config); ?>";
});
}
/*
|--------------------------------------------------------------------------
| COMMAND SETTINGS
|--------------------------------------------------------------------------
*/
/**
* Register commands.
* @return void
*/
private function registerCommands(): void
{
$this->commands(PublishCommand::class);
}
/*
|--------------------------------------------------------------------------
| LOADING SETTINGS
|--------------------------------------------------------------------------
*/
/**
* Set directory to load views.
* @return void
*/
private function loadViews(): void
{
$this->loadViewsFrom($this->packagePath('resources/views'), 'grid_view');
}
/**
* Set directory to load translations.
* @return void
*/
private function loadTranslations(): void
{
$this->loadTranslationsFrom($this->packagePath('resources/lang'), 'grid_view');
}
/*
|--------------------------------------------------------------------------
| PUBLISH SETTINGS
|--------------------------------------------------------------------------
*/
/**
* Publish views.
* @return void
*/
private function publishViews(): void
{
$this->publishes([
$this->packagePath('resources/views') => resource_path('views/vendor/grid_view'),
], 'views');
}
/**
* Publish translations.
* @return void
*/
private function publishTranslations(): void
{
$this->publishes([
$this->packagePath('resources/lang') => resource_path('lang/vendor/grid_view'),
], 'lang');
}
/*
|--------------------------------------------------------------------------
| OTHER SETTINGS
|--------------------------------------------------------------------------
*/
/**
* @param $path
* @return string
*/
private function packagePath($path): string
{
return __DIR__ . "/../" . $path;
}
}