-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPlugin.php
76 lines (69 loc) · 2.01 KB
/
Plugin.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<?php namespace Albrightlabs\NoFrontend;
use App;
use Route;
use Event;
use Config;
use Backend;
use Redirect;
use System\Classes\PluginBase;
/**
* NoFrontend Plugin Information File
*/
class Plugin extends PluginBase
{
/**
* Returns information about this plugin.
*
* @return array
*/
public function pluginDetails()
{
return [
'name' => 'No Frontend',
'description' => 'Simply removes the applcation\'s front-end and redirects it to the admin area.',
'author' => 'Albright Labs LLC',
'icon' => 'icon-ban',
'icon-svg' => '/plugins/albrightlabs/nofrontend/assets/images/plugin-icon.svg',
'homepage' => 'https://albrightlabs.com/',
];
}
/**
* Boot method, called right before the request route.
*
* @return array
*/
public function boot()
{
/**
* Define URIs for later
*/
$backendUri = Config::get('backend.uri', 'backend');
$appUri = Config::get('app.url');
/**
* Route homepage to admin area
*/
Route::get('/', function () use ($backendUri, $appUri) {
return Redirect::to($appUri.''.$backendUri);
});
/**
* Route all other front-end pages to admin area
*/
Route::get('/{any}', function ($any) use ($backendUri, $appUri) {
if(!App::runningInBackend()){
return Redirect::to($appUri.''.$backendUri);
}
})->where('any', '^(?!'.ltrim($backendUri, '/').').*$');
/**
* Stop if not running in admin area
*/
if(!App::runningInBackend()){
return;
}
/**
* Add css to hide scope icon in admin area navigation
*/
Event::listen('backend.page.beforeDisplay', function($controller, $action, $params) {
$controller->addCss("/plugins/albrightlabs/nofrontend/assets/css/styles.css");
});
}
}