forked from pingpong-labs/menus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMenusServiceProvider.php
87 lines (74 loc) · 1.68 KB
/
MenusServiceProvider.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
<?php namespace Pingpong\Menus;
use Illuminate\Foundation\AliasLoader;
use Illuminate\Support\ServiceProvider;
class MenusServiceProvider extends ServiceProvider
{
/**
* Indicates if loading of the provider is deferred.
*
* @var bool
*/
protected $defer = true;
/**
* Bootstrap the application events.
*/
public function boot()
{
$this->registerNamespaces();
$this->registerMenusFile();
}
/**
* Require the menus file if that file is exists.
*/
public function registerMenusFile()
{
if (file_exists($file = app_path('Support/menus.php'))) {
require $file;
}
}
/**
* Register the service provider.
*/
public function register()
{
// $this->registerHtmlPackage();
$this->app->singleton('menus', function ($app) {
return new Menu($app['view'], $app['config']);
});
}
/**
* Register "iluminate/html" package.
*/
protected function registerHtmlPackage()
{
$this->app->register('Collective\Html\HtmlServiceProvider');
$aliases = [
'HTML' => 'Collective\Html\HtmlFacade',
'Form' => 'Collective\Html\FormFacade',
];
AliasLoader::getInstance($aliases)->register();
}
/**
* Get the services provided by the provider.
*
* @return array
*/
public function provides()
{
return array('menus');
}
/**
* Register package's namespaces.
*/
protected function registerNamespaces()
{
$this->mergeConfigFrom(__DIR__.'/src/config/config.php', 'menus');
$this->loadViewsFrom(__DIR__.'/src/views', 'menus');
$this->publishes([
__DIR__.'/src/config/config.php' => config_path('menus.php'),
], 'config');
$this->publishes([
__DIR__.'/src/views' => base_path('resources/views/vendor/pingpong/menus'),
], 'views');
}
}