103 lines
3.4 KiB
PHP
103 lines
3.4 KiB
PHP
<?php
|
|
|
|
namespace Modules\ManagementTools\Providers;
|
|
|
|
use Illuminate\Support\Facades\Blade;
|
|
use Illuminate\Support\Facades\View;
|
|
use Illuminate\Support\ServiceProvider;
|
|
use Modules\ManagementTools\Console\ApplyExecutiveRoleMatrixCommand;
|
|
use Modules\ManagementTools\Console\AssignExecutiveUsersCommand;
|
|
use Modules\ManagementTools\Console\AssignExecutiveUsersManualCommand;
|
|
use Modules\ManagementTools\Console\ResetExecutiveRoleMatrixCommand;
|
|
use Modules\ManagementTools\Console\SendExecutiveBriefCommand;
|
|
use Modules\ManagementTools\Utils\ManagementToolsUtil;
|
|
|
|
class ManagementToolsServiceProvider extends ServiceProvider
|
|
{
|
|
protected $moduleName = 'ManagementTools';
|
|
|
|
protected $moduleNameLower = 'managementtools';
|
|
|
|
public function boot()
|
|
{
|
|
$this->registerTranslations();
|
|
$this->registerConfig();
|
|
$this->registerViews();
|
|
$this->registerBladeDirectives();
|
|
$this->loadMigrationsFrom(module_path($this->moduleName, 'Database/Migrations'));
|
|
|
|
View::composer('managementtools::*', function ($view) {
|
|
$view->with('mtUtil', app(ManagementToolsUtil::class));
|
|
});
|
|
}
|
|
|
|
public function register()
|
|
{
|
|
$this->app->register(RouteServiceProvider::class);
|
|
$this->commands([
|
|
SendExecutiveBriefCommand::class,
|
|
ApplyExecutiveRoleMatrixCommand::class,
|
|
AssignExecutiveUsersCommand::class,
|
|
AssignExecutiveUsersManualCommand::class,
|
|
ResetExecutiveRoleMatrixCommand::class,
|
|
]);
|
|
}
|
|
|
|
protected function registerConfig()
|
|
{
|
|
$this->publishes([
|
|
module_path($this->moduleName, 'Config/config.php') => config_path($this->moduleNameLower.'.php'),
|
|
], 'config');
|
|
$this->mergeConfigFrom(
|
|
module_path($this->moduleName, 'Config/config.php'),
|
|
$this->moduleNameLower
|
|
);
|
|
}
|
|
|
|
public function registerViews()
|
|
{
|
|
$viewPath = resource_path('views/modules/'.$this->moduleNameLower);
|
|
$sourcePath = module_path($this->moduleName, 'Resources/views');
|
|
|
|
$this->publishes([
|
|
$sourcePath => $viewPath,
|
|
], ['views', $this->moduleNameLower.'-module-views']);
|
|
|
|
$this->loadViewsFrom(array_merge($this->getPublishableViewPaths(), [$sourcePath]), $this->moduleNameLower);
|
|
}
|
|
|
|
public function registerTranslations()
|
|
{
|
|
$langPath = resource_path('lang/modules/'.$this->moduleNameLower);
|
|
|
|
if (is_dir($langPath)) {
|
|
$this->loadTranslationsFrom($langPath, $this->moduleNameLower);
|
|
} else {
|
|
$this->loadTranslationsFrom(module_path($this->moduleName, 'Resources/lang'), $this->moduleNameLower);
|
|
}
|
|
}
|
|
|
|
protected function registerBladeDirectives()
|
|
{
|
|
Blade::directive('mtdate', function ($expression) {
|
|
return "<?php echo app(\\Modules\\ManagementTools\\Utils\\ManagementToolsUtil::class)->formatDate($expression); ?>";
|
|
});
|
|
|
|
Blade::directive('mtdatetime', function ($expression) {
|
|
return "<?php echo app(\\Modules\\ManagementTools\\Utils\\ManagementToolsUtil::class)->formatDateTime($expression); ?>";
|
|
});
|
|
}
|
|
|
|
private function getPublishableViewPaths(): array
|
|
{
|
|
$paths = [];
|
|
foreach (\Config::get('view.paths') as $path) {
|
|
if (is_dir($path.'/modules/'.$this->moduleNameLower)) {
|
|
$paths[] = $path.'/modules/'.$this->moduleNameLower;
|
|
}
|
|
}
|
|
|
|
return $paths;
|
|
}
|
|
}
|