Skip to content

Commit 634777c

Browse files
author
Sandip Patel
committed
composer file update
1 parent 07e8f75 commit 634777c

File tree

5 files changed

+112
-0
lines changed

5 files changed

+112
-0
lines changed

composer.json

+13
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,20 @@
1111
"email": "[email protected]"
1212
}
1313
],
14+
"autoload": {
15+
"psr-4": {
16+
"PCB\\Laravel\\": "src/"
17+
}
18+
},
1419
"extra": {
20+
"laravel": {
21+
"providers": [
22+
"PCB\\Laravel\\ServiceProvider"
23+
],
24+
"aliases": {
25+
"PCBLaravel": "PCB\\Laravel\\Facade"
26+
}
27+
},
1528
"branch-alias": {
1629
"dev-master": "1.0-dev"
1730
}

src/Facade.php

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<?php
2+
3+
/*
4+
|--------------------------------------------------------------------------
5+
| Sandip Patel
6+
|--------------------------------------------------------------------------
7+
|
8+
| Date: 2017-09-18
9+
| Time: 11:38 AM
10+
*/
11+
namespace PCB\Laravel;
12+
13+
class Facade
14+
{
15+
16+
}

src/ServiceProvider.php

+60
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
<?php
2+
3+
/*
4+
|--------------------------------------------------------------------------
5+
| Sandip Patel
6+
|--------------------------------------------------------------------------
7+
|
8+
| Date: 2017-09-18
9+
| Time: 11:28 AM
10+
*/
11+
namespace PCB\Laravel;
12+
13+
use Illuminate\Support\Facades\Route;
14+
use Illuminate\Foundation\Support\Providers\RouteServiceProvider;
15+
16+
class ServiceProvider extends RouteServiceProvider
17+
{
18+
/**
19+
* Bootstrap any application services.
20+
*
21+
* @return void
22+
*/
23+
public function boot()
24+
{
25+
$this->loadRoutesFrom(__DIR__. '/routes.php');
26+
$this->loadMigrationsFrom(__DIR__. '/migrations');
27+
$this->loadTranslationsFrom(__DIR__.'/translations', 'modules');
28+
29+
$this->publishes([
30+
__DIR__. 'config.php' => config_path('modules.php'),
31+
__DIR__.'/translations' => resource_path('lang/vendor/modules')
32+
]);
33+
34+
35+
$plugins = config('plugins', []);
36+
37+
foreach ($plugins as $plugin => $desc)
38+
{
39+
$plugin_code = str_replace('_', '', strtolower($plugin));
40+
$plugin_path = app_path(). '/Plugins/' .ucfirst($plugin_code). DIRECTORY_SEPARATOR;
41+
$plugin_config = $plugin_path. 'config.php';
42+
43+
if( \File::exists($plugin_config) )
44+
{
45+
$this->mergeConfigFrom($plugin_config, $plugin_code);
46+
$this->loadMigrationsFrom($plugin_path. 'Migrations');
47+
$this->loadViewsFrom($plugin_path.'Views', $plugin_code);
48+
$this->loadTranslationsFrom($plugin_path.'Translations', $plugin_code);
49+
50+
$plugin_route = $plugin_path. 'routes.php';
51+
$plugin_namespace = 'App\Plugins\\' .ucfirst($plugin_code). '\\Controllers';
52+
53+
if( \File::exists($plugin_route) )
54+
{
55+
Route::namespace($plugin_namespace)->group($plugin_path. 'routes.php');
56+
}
57+
}
58+
}
59+
}
60+
}

src/config.php

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<?php
2+
3+
/*
4+
|--------------------------------------------------------------------------
5+
| Sandip Patel
6+
|--------------------------------------------------------------------------
7+
|
8+
| Date: 2017-09-18
9+
| Time: 11:36 AM
10+
*/
11+
return [
12+
'admin' => 'Admin Panel'
13+
];

src/routes.php

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<?php
2+
3+
/*
4+
|--------------------------------------------------------------------------
5+
| Sandip Patel
6+
|--------------------------------------------------------------------------
7+
|
8+
| Date: 2017-09-18
9+
| Time: 11:42 AM
10+
*/

0 commit comments

Comments
 (0)