Commit 1f95fa96 authored by Nicolas Widart's avatar Nicolas Widart

Using new configuration file names across all modules

parent b7c95ab0
<?php
return [
/*
|--------------------------------------------------------------------------
| Custom Sidebar Class
|--------------------------------------------------------------------------
| If you want to customise the admin sidebar ordering or grouping
| You can define your own sidebar class for this module.
| No custom sidebar: null
*/
'custom-sidebar' => null,
];
......@@ -38,4 +38,14 @@ return [
| Expressed in bytes
*/
'max-total-size' => 1000000000,
/*
|--------------------------------------------------------------------------
| Custom Sidebar Class
|--------------------------------------------------------------------------
| If you want to customise the admin sidebar ordering or grouping
| You can define your own sidebar class for this module.
| No custom sidebar: null
*/
'custom-sidebar' => null,
];
<?php
return [
/*
|--------------------------------------------------------------------------
| Custom Sidebar Class
|--------------------------------------------------------------------------
| If you want to customise the admin sidebar ordering or grouping
| You can define your own sidebar class for this module.
| No custom sidebar: null
*/
'custom-sidebar' => null,
/*
| Default Menu Presenter
|--------------------------------------------------------------------------
|--------------------------------------------------------------------------
| Configure which Menu presenter will be used by default without
| having to send it via the views
*/
'default_menu_presenter' => \Modules\Menu\Presenters\MenuPresenter::class,
];
......@@ -35,4 +35,14 @@ return [
|--------------------------------------------------------------------------
*/
'middleware' => [],
/*
|--------------------------------------------------------------------------
| Custom Sidebar Class
|--------------------------------------------------------------------------
| If you want to customise the admin sidebar ordering or grouping
| You can define your own sidebar class for this module.
| No custom sidebar: null
*/
'custom-sidebar' => null,
];
<?php
return [
/*
|--------------------------------------------------------------------------
| Custom Sidebar Class
|--------------------------------------------------------------------------
| If you want to customise the admin sidebar ordering or grouping
| You can define your own sidebar class for this module.
| No custom sidebar: null
*/
'custom-sidebar' => null,
];
<?php
return [
'name' => 'Tag',
/*
|--------------------------------------------------------------------------
| Custom Sidebar Class
|--------------------------------------------------------------------------
| If you want to customise the admin sidebar ordering or grouping
| You can define your own sidebar class for this module.
| No custom sidebar: null
*/
'custom-sidebar' => null,
];
......@@ -8,4 +8,14 @@ return [
| How many revisions need to be kept in database before removing the old ones
*/
'revision-history-limit' => 100,
/*
|--------------------------------------------------------------------------
| Custom Sidebar Class
|--------------------------------------------------------------------------
| If you want to customise the admin sidebar ordering or grouping
| You can define your own sidebar class for this module.
| No custom sidebar: null
*/
'custom-sidebar' => null,
];
......@@ -16,6 +16,13 @@ return [
'redirect_route_after_login' => 'homepage',
/*
|--------------------------------------------------------------------------
| Define which route the user should be redirected to after accessing
| a resource that requires to be logged in
|--------------------------------------------------------------------------
*/
'redirect_route_not_logged_in' => 'auth/login',
/*
|--------------------------------------------------------------------------
| Login column(s)
|--------------------------------------------------------------------------
| Define which column(s) you'd like to use to login with, currently
......@@ -41,4 +48,14 @@ return [
'first_name',
'last_name',
],
/*
|--------------------------------------------------------------------------
| Custom Sidebar Class
|--------------------------------------------------------------------------
| If you want to customise the admin sidebar ordering or grouping
| You can define your own sidebar class for this module.
| No custom sidebar: null
*/
'custom-sidebar' => null,
];
<?php
return [
/*
|--------------------------------------------------------------------------
| Custom Sidebar Class
|--------------------------------------------------------------------------
| If you want to customise the admin sidebar ordering or grouping
| You can define your own sidebar class for this module.
| No custom sidebar: null
*/
'custom-sidebar' => null,
];
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment