e003ffa38a
Changed the text editor
77 lines
2.3 KiB
PHP
77 lines
2.3 KiB
PHP
<?php
|
|
|
|
namespace Modules\PagePlus\Providers;
|
|
|
|
use Illuminate\Support\ServiceProvider;
|
|
|
|
class PagePlusServiceProvider extends ServiceProvider
|
|
{
|
|
protected string $moduleName = 'PagePlus';
|
|
|
|
protected string $moduleNameLower = 'pageplus';
|
|
|
|
public function boot(): void
|
|
{
|
|
$this->registerTranslations();
|
|
$this->registerViews();
|
|
$this->loadMigrationsFrom(module_path($this->moduleName, 'Database/Migrations'));
|
|
$this->registerConfig();
|
|
}
|
|
|
|
public function register(): void
|
|
{
|
|
$this->app->register(RouteServiceProvider::class);
|
|
}
|
|
|
|
protected function registerConfig(): void
|
|
{
|
|
$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(): void
|
|
{
|
|
$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(): void
|
|
{
|
|
$langPath = resource_path('lang/modules/' . $this->moduleNameLower);
|
|
|
|
if (is_dir($langPath)) {
|
|
$this->loadTranslationsFrom($langPath, $this->moduleNameLower);
|
|
$this->loadJsonTranslationsFrom($langPath, $this->moduleNameLower);
|
|
} else {
|
|
$this->loadTranslationsFrom(module_path($this->moduleName, 'Resources/lang'), $this->moduleNameLower);
|
|
$this->loadJsonTranslationsFrom(module_path($this->moduleName, 'Resources/lang'), $this->moduleNameLower);
|
|
}
|
|
}
|
|
|
|
public function provides(): array
|
|
{
|
|
return [];
|
|
}
|
|
|
|
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;
|
|
}
|
|
}
|