110 lines
2.3 KiB
PHP
110 lines
2.3 KiB
PHP
|
<?php
|
||
|
|
||
|
namespace Modules\MMFRestrictedCustomers\Providers;
|
||
|
|
||
|
use Illuminate\Support\ServiceProvider;
|
||
|
use Illuminate\Database\Eloquent\Factory;
|
||
|
use Modules\MMFRestrictedCustomers\Console\Commands\FetchEmails;
|
||
|
|
||
|
class MMFRestrictedCustomersServiceProvider extends ServiceProvider {
|
||
|
/**
|
||
|
* Indicates if loading of the provider is deferred.
|
||
|
*
|
||
|
* @var bool
|
||
|
*/
|
||
|
protected $defer = false;
|
||
|
|
||
|
/**
|
||
|
* Boot the application events.
|
||
|
*
|
||
|
* @return void
|
||
|
*/
|
||
|
public function boot() {
|
||
|
$this->registerConfig();
|
||
|
$this->registerViews();
|
||
|
$this->registerFactories();
|
||
|
$this->loadMigrationsFrom(__DIR__ . '/../Database/Migrations');
|
||
|
$this->commands([
|
||
|
FetchEmails::class,
|
||
|
]);
|
||
|
$this->hooks();
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Module hooks.
|
||
|
*/
|
||
|
public function hooks() {
|
||
|
//
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Register the service provider.
|
||
|
*
|
||
|
* @return void
|
||
|
*/
|
||
|
public function register() {
|
||
|
$this->registerTranslations();
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Register config.
|
||
|
*
|
||
|
* @return void
|
||
|
*/
|
||
|
protected function registerConfig() {
|
||
|
$this->publishes([
|
||
|
__DIR__.'/../Config/config.php' => config_path('mmfrestrictedcustomers.php'),
|
||
|
], 'config');
|
||
|
$this->mergeConfigFrom(
|
||
|
__DIR__.'/../Config/config.php', 'mmfrestrictedcustomers'
|
||
|
);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Register views.
|
||
|
*
|
||
|
* @return void
|
||
|
*/
|
||
|
public function registerViews() {
|
||
|
$viewPath = resource_path('views/modules/mmfrestrictedcustomers');
|
||
|
|
||
|
$sourcePath = __DIR__.'/../Resources/views';
|
||
|
|
||
|
$this->publishes([
|
||
|
$sourcePath => $viewPath
|
||
|
],'views');
|
||
|
|
||
|
$this->loadViewsFrom(array_merge(array_map(function ($path) {
|
||
|
return $path . '/modules/mmfrestrictedcustomers';
|
||
|
}, \Config::get('view.paths')), [$sourcePath]), 'mmfrestrictedcustomers');
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Register translations.
|
||
|
*
|
||
|
* @return void
|
||
|
*/
|
||
|
public function registerTranslations() {
|
||
|
$this->loadJsonTranslationsFrom(__DIR__ .'/../Resources/lang');
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Register an additional directory of factories.
|
||
|
* @source https://github.com/sebastiaanluca/laravel-resource-flow/blob/develop/src/Modules/ModuleServiceProvider.php#L66
|
||
|
*/
|
||
|
public function registerFactories() {
|
||
|
if (! app()->environment('production')) {
|
||
|
app(Factory::class)->load(__DIR__ . '/../Database/factories');
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Get the services provided by the provider.
|
||
|
*
|
||
|
* @return array
|
||
|
*/
|
||
|
public function provides() {
|
||
|
return [];
|
||
|
}
|
||
|
}
|