phpvms/modules/Sample/Providers/SampleServiceProvider.php

154 lines
3.7 KiB
PHP
Raw Normal View History

2017-12-06 11:51:15 +08:00
<?php
namespace Modules\Sample\Providers;
2018-08-27 02:50:08 +08:00
use App\Services\ModuleService;
use Illuminate\Support\ServiceProvider;
2017-12-06 11:51:15 +08:00
use Route;
class SampleServiceProvider extends ServiceProvider
{
protected $moduleSvc;
/**
* Boot the application events.
*/
public function boot()
{
2018-08-27 02:50:08 +08:00
$this->moduleSvc = app(ModuleService::class);
2017-12-06 11:51:15 +08:00
$this->registerRoutes();
$this->registerTranslations();
$this->registerConfig();
$this->registerViews();
$this->registerLinks();
$this->loadMigrationsFrom(__DIR__.'/../Database/migrations');
2017-12-06 11:51:15 +08:00
}
/**
* Register the service provider.
*/
public function register()
{
//
}
/**
* Add module links here
*/
public function registerLinks()
{
// Show this link if logged in
// $this->moduleSvc->addFrontendLink('Sample', '/sample', '', $logged_in=true);
// Admin links:
$this->moduleSvc->addAdminLink('Sample', '/admin/sample');
2017-12-06 11:51:15 +08:00
}
/**
* Register the routes
*/
protected function registerRoutes()
{
/*
* Routes for the frontend
*/
2017-12-06 11:51:15 +08:00
Route::group([
'as' => 'sample.',
2017-12-06 11:51:15 +08:00
'prefix' => 'sample',
// If you want a RESTful module, change this to 'api'
'middleware' => ['web'],
'namespace' => 'Modules\Sample\Http\Controllers',
], function () {
$this->loadRoutesFrom(__DIR__.'/../Http/Routes/web.php');
});
/*
* Routes for the admin
*/
Route::group([
'as' => 'sample.',
'prefix' => 'admin/sample',
// If you want a RESTful module, change this to 'api'
'middleware' => ['web', 'role:admin'],
'namespace' => 'Modules\Sample\Http\Controllers\Admin',
], function () {
$this->loadRoutesFrom(__DIR__.'/../Http/Routes/admin.php');
});
/*
* Routes for an API
*/
Route::group([
'as' => 'sample.',
'prefix' => 'api/sample',
// If you want a RESTful module, change this to 'api'
'middleware' => ['api'],
'namespace' => 'Modules\Sample\Http\Controllers\Api',
], function () {
$this->loadRoutesFrom(__DIR__.'/../Http/Routes/api.php');
2017-12-06 11:51:15 +08:00
});
}
/**
* Register config.
*/
protected function registerConfig()
{
$this->publishes([
__DIR__.'/../Config/config.php' => config_path('sample.php'),
], 'config');
$this->mergeConfigFrom(
__DIR__.'/../Config/config.php', 'sample'
);
}
/**
* Register views.
*/
public function registerViews()
{
$viewPath = resource_path('views/modules/sample');
$sourcePath = __DIR__.'/../Resources/views';
$this->publishes([
$sourcePath => $viewPath,
], 'views');
2017-12-06 11:51:15 +08:00
2018-08-27 02:50:08 +08:00
$paths = array_map(
function ($path) {
return $path.'/modules/sample';
},
\Config::get('view.paths')
);
$paths[] = $sourcePath;
$this->loadViewsFrom($paths, 'sample');
2017-12-06 11:51:15 +08:00
}
/**
* Register translations.
*/
public function registerTranslations()
{
$langPath = resource_path('lang/modules/sample');
if (is_dir($langPath)) {
$this->loadTranslationsFrom($langPath, 'sample');
} else {
$this->loadTranslationsFrom(__DIR__.'/../Resources/lang', 'sample');
2017-12-06 11:51:15 +08:00
}
}
/**
* Get the services provided by the provider.
*/
2018-08-27 02:50:08 +08:00
public function provides(): array
2017-12-06 11:51:15 +08:00
{
return [];
}
}