Commit 0ee96b43 authored by Nicolas Widart's avatar Nicolas Widart

Republishing modules configuration files

parent b7c25f19
<?php <?php
return [ return [
/* /*
|-------------------------------------------------------------------------- |--------------------------------------------------------------------------
| The prefix that'll be used for the administration | The prefix that'll be used for the administration
|-------------------------------------------------------------------------- |--------------------------------------------------------------------------
*/ */
'admin-prefix' => 'backend', 'admin-prefix' => 'backend',
/* /*
...@@ -22,12 +22,12 @@ return [ ...@@ -22,12 +22,12 @@ return [
*/ */
'admin-theme' => 'AdminLTE', 'admin-theme' => 'AdminLTE',
/* /*
|-------------------------------------------------------------------------- |--------------------------------------------------------------------------
| Define which assets will be available through the asset manager | Define which assets will be available through the asset manager
|-------------------------------------------------------------------------- |--------------------------------------------------------------------------
| These assets are registered on the asset manager | These assets are registered on the asset manager
*/ */
'admin-assets' => [ 'admin-assets' => [
// Css // Css
'bootstrap.css' => ['theme' => 'vendor/bootstrap/dist/css/bootstrap.min.css'], 'bootstrap.css' => ['theme' => 'vendor/bootstrap/dist/css/bootstrap.min.css'],
...@@ -71,34 +71,36 @@ return [ ...@@ -71,34 +71,36 @@ return [
'chart.js' => ['theme' => 'vendor/admin-lte/plugins/chartjs/Chart.js'], 'chart.js' => ['theme' => 'vendor/admin-lte/plugins/chartjs/Chart.js'],
], ],
/* /*
|-------------------------------------------------------------------------- |--------------------------------------------------------------------------
| Define which default assets will always be included in your pages | Define which default assets will always be included in your pages
| through the asset pipeline | through the asset pipeline
|-------------------------------------------------------------------------- |--------------------------------------------------------------------------
*/ */
'admin-required-assets' => [ 'admin-required-assets' => [
'css' => [ 'css' => [
'bootstrap.css', 'bootstrap.css',
'font-awesome.css', 'font-awesome.css',
'alertify.core.css', 'alertify.core.css',
'alertify.default.css', 'alertify.default.css',
'dataTables.bootstrap.css', 'dataTables.bootstrap.css',
'AdminLTE.css', 'AdminLTE.css',
'AdminLTE.all.skins.css', 'AdminLTE.all.skins.css',
'asgard.css', 'asgard.css',
], ],
'js' => [ 'js' => [
'jquery.js', 'jquery.js',
'bootstrap.js', 'bootstrap.js',
'mousetrap.js', 'mousetrap.js',
'alertify.js', 'alertify.js',
'icheck.js', 'icheck.js',
'jquery.dataTables.js', 'jquery.dataTables.js',
'dataTables.bootstrap.js', 'dataTables.bootstrap.js',
'jquery.slug.js', 'jquery.slug.js',
'keypressAction.js', 'keypressAction.js',
'app.js', 'app.js',
], 'main.js',
], 'sisyphus.js',
],
],
]; ];
...@@ -15,4 +15,14 @@ return [ ...@@ -15,4 +15,14 @@ return [
'description' => 'core::settings.template', 'description' => 'core::settings.template',
'view' => 'core::fields.select-theme', 'view' => 'core::fields.select-theme',
], ],
'google-analytics' => [
'description' => 'core::settings.google-analytics',
'view' => 'textarea',
'translatable' => false,
],
'locales' => [
'description' => 'core::settings.locales',
'view' => 'core::fields.select-locales',
'translatable' => false,
],
]; ];
<?php <?php
return [ return [
'dashboard.grid' => [
'save',
'reset',
],
'dashboard' => [ 'dashboard' => [
'index', 'index',
], ],
......
...@@ -20,4 +20,12 @@ return [ ...@@ -20,4 +20,12 @@ return [
|-------------------------------------------------------------------------- |--------------------------------------------------------------------------
*/ */
'max-file-size' => '5', 'max-file-size' => '5',
/*
|--------------------------------------------------------------------------
| Determine the max total media folder size
|--------------------------------------------------------------------------
| Expressed in bytes
*/
'max-total-size' => 1000000000,
]; ];
...@@ -8,4 +8,8 @@ return [ ...@@ -8,4 +8,8 @@ return [
'update', 'update',
'destroy', 'destroy',
], ],
'media.media-grid' => [
'index',
'ckIndex',
]
]; ];
...@@ -2,10 +2,21 @@ ...@@ -2,10 +2,21 @@
return [ return [
'smallThumb' => [ 'smallThumb' => [
'fit' => [ 'resize' => [
'width' => 50, 'width' => 50,
'height' => 50, 'height' => null,
'callback' => function ($constraint) { 'callback' => function ($constraint) {
$constraint->aspectRatio();
$constraint->upsize();
},
],
],
'mediumThumb' => [
'resize' => [
'width' => 180,
'height' => null,
'callback' => function ($constraint) {
$constraint->aspectRatio();
$constraint->upsize(); $constraint->upsize();
}, },
], ],
......
...@@ -23,12 +23,13 @@ return [ ...@@ -23,12 +23,13 @@ return [
| only supported by the Sentinel user driver | only supported by the Sentinel user driver
*/ */
'login-columns' => ['email'], 'login-columns' => ['email'],
/* /*
|-------------------------------------------------------------------------- |--------------------------------------------------------------------------
| Fillable user fields | Fillable user fields
|-------------------------------------------------------------------------- |--------------------------------------------------------------------------
| Set the fillable user fields, those fields will be mass assigned | Set the fillable user fields, those fields will be mass assigned
*/ */
'fillable' => [ 'fillable' => [
'email', 'email',
'password', 'password',
......
...@@ -7,4 +7,23 @@ return [ ...@@ -7,4 +7,23 @@ return [
'disable', 'disable',
'enable', 'enable',
], ],
/*'workshop.workbench' => [
'index',
'generate',
'migrate',
'install',
'seed',
],
'workshop.generate' => [
'generate',
],
'workshop.install' => [
'install',
],
'workshop.migrate' => [
'migrate',
],
'workshop.seed' => [
'seed',
],*/
]; ];
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