@@ -23,7 +23,7 @@ discard block |
||
| 23 | 23 | } |
| 24 | 24 | |
| 25 | 25 | private static function cacheUserVariables() { |
| 26 | - if(isset(self::$userVariables)) return; |
|
| 26 | + if (isset(self::$userVariables)) return; |
|
| 27 | 27 | |
| 28 | 28 | $userId = Auth::id(); |
| 29 | 29 | |
@@ -33,7 +33,7 @@ discard block |
||
| 33 | 33 | } |
| 34 | 34 | |
| 35 | 35 | private static function cacheAdminVariables() { |
| 36 | - if(isset(self::$adminVariables)) return; |
|
| 36 | + if (isset(self::$adminVariables)) return; |
|
| 37 | 37 | |
| 38 | 38 | foreach (self::where('user_id', 0) as $row) { |
| 39 | 39 | self::$adminVariables[$row['group']][$row['name']] = $row['value']; |
@@ -41,7 +41,7 @@ discard block |
||
| 41 | 41 | } |
| 42 | 42 | |
| 43 | 43 | public static function get($group, $name, $user = null) { |
| 44 | - $user = $user?: Auth::id(); |
|
| 44 | + $user = $user ?: Auth::id(); |
|
| 45 | 45 | |
| 46 | 46 | if (!$user || !is_numeric($user)) return; |
| 47 | 47 | |
@@ -51,7 +51,7 @@ discard block |
||
| 51 | 51 | } |
| 52 | 52 | |
| 53 | 53 | public static function getGroup($group, $user = null) { |
| 54 | - $user = $user?: Auth::id(); |
|
| 54 | + $user = $user ?: Auth::id(); |
|
| 55 | 55 | |
| 56 | 56 | if (!$user || !is_numeric($user)) return; |
| 57 | 57 | |
@@ -73,7 +73,7 @@ discard block |
||
| 73 | 73 | } |
| 74 | 74 | |
| 75 | 75 | public static function put($group, $name, $value, $user = null) { |
| 76 | - $user_id = $user?: Auth::id(); |
|
| 76 | + $user_id = $user ?: Auth::id(); |
|
| 77 | 77 | |
| 78 | 78 | if (!$user_id || !is_numeric($user_id)) return; |
| 79 | 79 | |
@@ -101,7 +101,7 @@ discard block |
||
| 101 | 101 | } |
| 102 | 102 | |
| 103 | 103 | public static function forget($group, $name, $user = null) { |
| 104 | - $user_id = $user?: Auth::id(); |
|
| 104 | + $user_id = $user ?: Auth::id(); |
|
| 105 | 105 | |
| 106 | 106 | if (!$user_id || !is_numeric($user_id)) return; |
| 107 | 107 | |
@@ -23,7 +23,9 @@ discard block |
||
| 23 | 23 | } |
| 24 | 24 | |
| 25 | 25 | private static function cacheUserVariables() { |
| 26 | - if(isset(self::$userVariables)) return; |
|
| 26 | + if(isset(self::$userVariables)) { |
|
| 27 | + return; |
|
| 28 | + } |
|
| 27 | 29 | |
| 28 | 30 | $userId = Auth::id(); |
| 29 | 31 | |
@@ -33,7 +35,9 @@ discard block |
||
| 33 | 35 | } |
| 34 | 36 | |
| 35 | 37 | private static function cacheAdminVariables() { |
| 36 | - if(isset(self::$adminVariables)) return; |
|
| 38 | + if(isset(self::$adminVariables)) { |
|
| 39 | + return; |
|
| 40 | + } |
|
| 37 | 41 | |
| 38 | 42 | foreach (self::where('user_id', 0) as $row) { |
| 39 | 43 | self::$adminVariables[$row['group']][$row['name']] = $row['value']; |
@@ -43,7 +47,9 @@ discard block |
||
| 43 | 47 | public static function get($group, $name, $user = null) { |
| 44 | 48 | $user = $user?: Auth::id(); |
| 45 | 49 | |
| 46 | - if (!$user || !is_numeric($user)) return; |
|
| 50 | + if (!$user || !is_numeric($user)) { |
|
| 51 | + return; |
|
| 52 | + } |
|
| 47 | 53 | |
| 48 | 54 | self::cache(); |
| 49 | 55 | |
@@ -53,7 +59,9 @@ discard block |
||
| 53 | 59 | public static function getGroup($group, $user = null) { |
| 54 | 60 | $user = $user?: Auth::id(); |
| 55 | 61 | |
| 56 | - if (!$user || !is_numeric($user)) return; |
|
| 62 | + if (!$user || !is_numeric($user)) { |
|
| 63 | + return; |
|
| 64 | + } |
|
| 57 | 65 | |
| 58 | 66 | self::cache(); |
| 59 | 67 | |
@@ -75,7 +83,9 @@ discard block |
||
| 75 | 83 | public static function put($group, $name, $value, $user = null) { |
| 76 | 84 | $user_id = $user?: Auth::id(); |
| 77 | 85 | |
| 78 | - if (!$user_id || !is_numeric($user_id)) return; |
|
| 86 | + if (!$user_id || !is_numeric($user_id)) { |
|
| 87 | + return; |
|
| 88 | + } |
|
| 79 | 89 | |
| 80 | 90 | self::cache(); |
| 81 | 91 | |
@@ -103,7 +113,9 @@ discard block |
||
| 103 | 113 | public static function forget($group, $name, $user = null) { |
| 104 | 114 | $user_id = $user?: Auth::id(); |
| 105 | 115 | |
| 106 | - if (!$user_id || !is_numeric($user_id)) return; |
|
| 116 | + if (!$user_id || !is_numeric($user_id)) { |
|
| 117 | + return; |
|
| 118 | + } |
|
| 107 | 119 | |
| 108 | 120 | self::cache(); |
| 109 | 121 | |
@@ -6,31 +6,31 @@ |
||
| 6 | 6 | |
| 7 | 7 | class CreateUserSettingsTable extends Migration |
| 8 | 8 | { |
| 9 | - /** |
|
| 10 | - * Run the migrations. |
|
| 11 | - * |
|
| 12 | - * @return void |
|
| 13 | - */ |
|
| 14 | - public function up() |
|
| 15 | - { |
|
| 16 | - $this->down(); |
|
| 9 | + /** |
|
| 10 | + * Run the migrations. |
|
| 11 | + * |
|
| 12 | + * @return void |
|
| 13 | + */ |
|
| 14 | + public function up() |
|
| 15 | + { |
|
| 16 | + $this->down(); |
|
| 17 | 17 | |
| 18 | - Schema::create('user_settings', function (Blueprint $table) { |
|
| 19 | - $table->increments('id'); |
|
| 20 | - $table->unsignedInteger('user_id'); |
|
| 21 | - $table->string('group', 512); |
|
| 22 | - $table->string('name', 128); |
|
| 23 | - $table->text('value'); |
|
| 24 | - }); |
|
| 25 | - } |
|
| 18 | + Schema::create('user_settings', function (Blueprint $table) { |
|
| 19 | + $table->increments('id'); |
|
| 20 | + $table->unsignedInteger('user_id'); |
|
| 21 | + $table->string('group', 512); |
|
| 22 | + $table->string('name', 128); |
|
| 23 | + $table->text('value'); |
|
| 24 | + }); |
|
| 25 | + } |
|
| 26 | 26 | |
| 27 | - /** |
|
| 28 | - * Reverse the migrations. |
|
| 29 | - * |
|
| 30 | - * @return void |
|
| 31 | - */ |
|
| 32 | - public function down() |
|
| 33 | - { |
|
| 34 | - Schema::dropIfExists('user_settings'); |
|
| 35 | - } |
|
| 27 | + /** |
|
| 28 | + * Reverse the migrations. |
|
| 29 | + * |
|
| 30 | + * @return void |
|
| 31 | + */ |
|
| 32 | + public function down() |
|
| 33 | + { |
|
| 34 | + Schema::dropIfExists('user_settings'); |
|
| 35 | + } |
|
| 36 | 36 | } |
@@ -15,7 +15,7 @@ |
||
| 15 | 15 | { |
| 16 | 16 | $this->down(); |
| 17 | 17 | |
| 18 | - Schema::create('user_settings', function (Blueprint $table) { |
|
| 18 | + Schema::create('user_settings', function(Blueprint $table) { |
|
| 19 | 19 | $table->increments('id'); |
| 20 | 20 | $table->unsignedInteger('user_id'); |
| 21 | 21 | $table->string('group', 512); |
@@ -25,7 +25,7 @@ |
||
| 25 | 25 | */ |
| 26 | 26 | public function group() |
| 27 | 27 | { |
| 28 | - return $this->group?: static::class; |
|
| 28 | + return $this->group ?: static::class; |
|
| 29 | 29 | } |
| 30 | 30 | |
| 31 | 31 | /** |
@@ -139,7 +139,9 @@ |
||
| 139 | 139 | $form->addField('create', ['CheckBox', 'caption' => __('Create New Database')])->on('change', new jsExpression('if ($(event.target).is(":checked")) alert([])', [__('WARNING: Make sure you have CREATE access level to do this!')])); |
| 140 | 140 | |
| 141 | 141 | foreach ($wizard->recall('connection', []) as $name => $value) { |
| 142 | - if (! $field = $form->fields[$name]?? null) continue; |
|
| 142 | + if (! $field = $form->fields[$name]?? null) { |
|
| 143 | + continue; |
|
| 144 | + } |
|
| 143 | 145 | |
| 144 | 146 | $field->set($value); |
| 145 | 147 | } |
@@ -79,7 +79,7 @@ discard block |
||
| 79 | 79 | |
| 80 | 80 | $form->addField('language', ['DropDown', 'values' => $values, 'caption' => __('Select Language'), 'iconLeft' => 'globe'], ['required'=>true])->set($wizard->recall('language', 'en')); |
| 81 | 81 | |
| 82 | - $form->onSubmit(function ($form) use ($wizard) { |
|
| 82 | + $form->onSubmit(function($form) use ($wizard) { |
|
| 83 | 83 | $wizard->memorize('language', $form->model['language']); |
| 84 | 84 | |
| 85 | 85 | App::setLocale($form->model['language']); |
@@ -111,7 +111,7 @@ discard block |
||
| 111 | 111 | $form->addField('support', ['CheckBox', 'caption' => __('I will not remove "Support -> About" credit page from the application menu.')], ['required'=>true]); |
| 112 | 112 | $form->addField('store', ['CheckBox', 'caption' => __('I will not remove or rename ":epesi Store" links from the application.', ['epesi' => config('epesi.app.title')])], ['required'=>true]); |
| 113 | 113 | |
| 114 | - $form->onSubmit(function ($form) use ($wizard) { |
|
| 114 | + $form->onSubmit(function($form) use ($wizard) { |
|
| 115 | 115 | return $wizard->jsNext(); |
| 116 | 116 | }); |
| 117 | 117 | |
@@ -139,12 +139,12 @@ discard block |
||
| 139 | 139 | $form->addField('create', ['CheckBox', 'caption' => __('Create New Database')])->on('change', new jsExpression('if ($(event.target).is(":checked")) alert([])', [__('WARNING: Make sure you have CREATE access level to do this!')])); |
| 140 | 140 | |
| 141 | 141 | foreach ($wizard->recall('connection', []) as $name => $value) { |
| 142 | - if (! $field = $form->fields[$name]?? null) continue; |
|
| 142 | + if (!$field = $form->fields[$name]?? null) continue; |
|
| 143 | 143 | |
| 144 | 144 | $field->set($value); |
| 145 | 145 | } |
| 146 | 146 | |
| 147 | - $form->onSubmit(function ($form) use ($wizard) { |
|
| 147 | + $form->onSubmit(function($form) use ($wizard) { |
|
| 148 | 148 | $connection = $form->model->get(); |
| 149 | 149 | |
| 150 | 150 | $wizard->memorize('connection', $connection); |
@@ -192,7 +192,7 @@ discard block |
||
| 192 | 192 | |
| 193 | 193 | $form->model->set($wizard->recall('user')); |
| 194 | 194 | |
| 195 | - $form->validate(function ($form) use ($wizard) { |
|
| 195 | + $form->validate(function($form) use ($wizard) { |
|
| 196 | 196 | $wizard->memorize('user', $form->model->get()); |
| 197 | 197 | |
| 198 | 198 | return $wizard->jsNext(); |
@@ -17,7 +17,9 @@ |
||
| 17 | 17 | { |
| 18 | 18 | $this->ensureHttps(); |
| 19 | 19 | |
| 20 | - if (env('APP_DEBUG', false)) ModuleManager::clearCache(); |
|
| 20 | + if (env('APP_DEBUG', false)) { |
|
| 21 | + ModuleManager::clearCache(); |
|
| 22 | + } |
|
| 21 | 23 | |
| 22 | 24 | Route::group(['namespace' => 'Epesi\Core\Controllers', 'middleware' => 'web'], function() { |
| 23 | 25 | Route::any('/', 'SystemController@index'); |
@@ -12,73 +12,73 @@ |
||
| 12 | 12 | |
| 13 | 13 | class EpesiServiceProvider extends ServiceProvider |
| 14 | 14 | { |
| 15 | - /** |
|
| 16 | - * Booting the package. |
|
| 17 | - */ |
|
| 18 | - public function boot() |
|
| 19 | - { |
|
| 20 | - $this->ensureHttps(); |
|
| 15 | + /** |
|
| 16 | + * Booting the package. |
|
| 17 | + */ |
|
| 18 | + public function boot() |
|
| 19 | + { |
|
| 20 | + $this->ensureHttps(); |
|
| 21 | 21 | |
| 22 | - if (env('APP_DEBUG', false)) ModuleManager::clearCache(); |
|
| 22 | + if (env('APP_DEBUG', false)) ModuleManager::clearCache(); |
|
| 23 | 23 | |
| 24 | - Route::group(['namespace' => 'Epesi\Core\Controllers', 'middleware' => 'web'], function() { |
|
| 25 | - Route::any('/', 'SystemController@index'); |
|
| 26 | - Route::get('logo', 'SystemController@logo'); |
|
| 27 | - Route::any('install', 'SystemController@install'); |
|
| 24 | + Route::group(['namespace' => 'Epesi\Core\Controllers', 'middleware' => 'web'], function() { |
|
| 25 | + Route::any('/', 'SystemController@index'); |
|
| 26 | + Route::get('logo', 'SystemController@logo'); |
|
| 27 | + Route::any('install', 'SystemController@install'); |
|
| 28 | 28 | |
| 29 | - Route::group(['middleware' => ['auth', NoCacheHeaders::class]], function() { |
|
| 30 | - Route::any('home', 'SystemController@home')->name('home'); |
|
| 29 | + Route::group(['middleware' => ['auth', NoCacheHeaders::class]], function() { |
|
| 30 | + Route::any('home', 'SystemController@home')->name('home'); |
|
| 31 | 31 | |
| 32 | - Route::any('view/{alias}/{method?}/{args?}', 'SystemController@view'); |
|
| 33 | - }); |
|
| 34 | - }); |
|
| 32 | + Route::any('view/{alias}/{method?}/{args?}', 'SystemController@view'); |
|
| 33 | + }); |
|
| 34 | + }); |
|
| 35 | 35 | |
| 36 | - // call boot methods on all modules |
|
| 37 | - ModuleManager::call('boot'); |
|
| 36 | + // call boot methods on all modules |
|
| 37 | + ModuleManager::call('boot'); |
|
| 38 | 38 | |
| 39 | 39 | foreach (ModuleManager::collect('translations') as $path) { |
| 40 | 40 | $this->loadJsonTranslationsFrom($path); |
| 41 | 41 | } |
| 42 | 42 | |
| 43 | - // Register admin service provider if in admin mode or in console |
|
| 44 | - // TODO: apply access restriction to admin mode |
|
| 43 | + // Register admin service provider if in admin mode or in console |
|
| 44 | + // TODO: apply access restriction to admin mode |
|
| 45 | 45 | // if ($this->app->runningInConsole() || (request('admin', false) && Auth::user()->can('modify system'))) { |
| 46 | - if ($this->app->runningInConsole() || request('admin', false)) { |
|
| 47 | - $this->app->register(AdminServiceProvider::class); |
|
| 48 | - } |
|
| 49 | - } |
|
| 46 | + if ($this->app->runningInConsole() || request('admin', false)) { |
|
| 47 | + $this->app->register(AdminServiceProvider::class); |
|
| 48 | + } |
|
| 49 | + } |
|
| 50 | 50 | |
| 51 | - /** |
|
| 52 | - * Register the provider. |
|
| 53 | - */ |
|
| 54 | - public function register() |
|
| 55 | - { |
|
| 56 | - $this->app->singleton(App::class); |
|
| 51 | + /** |
|
| 52 | + * Register the provider. |
|
| 53 | + */ |
|
| 54 | + public function register() |
|
| 55 | + { |
|
| 56 | + $this->app->singleton(App::class); |
|
| 57 | 57 | |
| 58 | - $this->app->singleton( |
|
| 59 | - SQL::class, |
|
| 60 | - function ($app) { |
|
| 61 | - /** |
|
| 62 | - * Database Manager |
|
| 63 | - * |
|
| 64 | - * @var \Illuminate\Database\DatabaseManager $db |
|
| 65 | - */ |
|
| 66 | - $db = DB::getFacadeRoot(); |
|
| 58 | + $this->app->singleton( |
|
| 59 | + SQL::class, |
|
| 60 | + function ($app) { |
|
| 61 | + /** |
|
| 62 | + * Database Manager |
|
| 63 | + * |
|
| 64 | + * @var \Illuminate\Database\DatabaseManager $db |
|
| 65 | + */ |
|
| 66 | + $db = DB::getFacadeRoot(); |
|
| 67 | 67 | |
| 68 | - return new SQL($db); |
|
| 69 | - }); |
|
| 70 | - } |
|
| 68 | + return new SQL($db); |
|
| 69 | + }); |
|
| 70 | + } |
|
| 71 | 71 | |
| 72 | - /** |
|
| 73 | - * Force to set https scheme if https enabled. |
|
| 74 | - * |
|
| 75 | - * @return void |
|
| 76 | - */ |
|
| 77 | - protected function ensureHttps() |
|
| 78 | - { |
|
| 79 | - if (config('epesi.https') || config('epesi.secure')) { |
|
| 80 | - url()->forceScheme('https'); |
|
| 81 | - $this->app['request']->server->set('HTTPS', true); |
|
| 82 | - } |
|
| 83 | - } |
|
| 72 | + /** |
|
| 73 | + * Force to set https scheme if https enabled. |
|
| 74 | + * |
|
| 75 | + * @return void |
|
| 76 | + */ |
|
| 77 | + protected function ensureHttps() |
|
| 78 | + { |
|
| 79 | + if (config('epesi.https') || config('epesi.secure')) { |
|
| 80 | + url()->forceScheme('https'); |
|
| 81 | + $this->app['request']->server->set('HTTPS', true); |
|
| 82 | + } |
|
| 83 | + } |
|
| 84 | 84 | } |
@@ -57,7 +57,7 @@ |
||
| 57 | 57 | |
| 58 | 58 | $this->app->singleton( |
| 59 | 59 | SQL::class, |
| 60 | - function ($app) { |
|
| 60 | + function($app) { |
|
| 61 | 61 | /** |
| 62 | 62 | * Database Manager |
| 63 | 63 | * |
@@ -42,7 +42,9 @@ |
||
| 42 | 42 | }); |
| 43 | 43 | |
| 44 | 44 | $logo->onUpload(function ($files) use ($form, $logo) { |
| 45 | - if ($files === 'error') return $form->error('logo', __('Error uploading image')); |
|
| 45 | + if ($files === 'error') { |
|
| 46 | + return $form->error('logo', __('Error uploading image')); |
|
| 47 | + } |
|
| 46 | 48 | |
| 47 | 49 | $tmpPath = self::alias() . '/tmp/' . $files['name']; |
| 48 | 50 | |
@@ -34,8 +34,8 @@ discard block |
||
| 34 | 34 | $form->addField('custom_logo', ['CheckBox', 'caption' => __('Use custom logo')]); |
| 35 | 35 | |
| 36 | 36 | $form->model->set([ |
| 37 | - 'title' => Variable::recall('system.title'), |
|
| 38 | - 'custom_logo' => (bool) Variable::recall('system.logo') |
|
| 37 | + 'title' => Variable::recall('system.title'), |
|
| 38 | + 'custom_logo' => (bool) Variable::recall('system.logo') |
|
| 39 | 39 | ]); |
| 40 | 40 | |
| 41 | 41 | $logo = $form->addField('logo', [ |
@@ -76,7 +76,7 @@ discard block |
||
| 76 | 76 | $storage->move($from, $to); |
| 77 | 77 | } |
| 78 | 78 | |
| 79 | - Variable::memorize('system.logo', $logo); |
|
| 79 | + Variable::memorize('system.logo', $logo); |
|
| 80 | 80 | |
| 81 | 81 | Variable::memorize('system.title', $form->model['title']); |
| 82 | 82 | |
@@ -53,7 +53,7 @@ discard block |
||
| 53 | 53 | $logo->setThumbnailSrc(asset('storage/' . self::alias() . '/' . self::$defaultLogo)); |
| 54 | 54 | }); |
| 55 | 55 | |
| 56 | - $logo->onUpload(function ($files) use ($form, $logo) { |
|
| 56 | + $logo->onUpload(function($files) use ($form, $logo) { |
|
| 57 | 57 | if ($files === 'error') return $form->error('logo', __('Error uploading image')); |
| 58 | 58 | |
| 59 | 59 | $tmpPath = self::alias() . '/tmp/' . $files['name']; |
@@ -64,7 +64,7 @@ discard block |
||
| 64 | 64 | }); |
| 65 | 65 | |
| 66 | 66 | $form->onSubmit(function($form) { |
| 67 | - if ($logo = $form->model['custom_logo']? $form->model['logo']: null) { |
|
| 67 | + if ($logo = $form->model['custom_logo'] ? $form->model['logo'] : null) { |
|
| 68 | 68 | $storage = $this->storage(); |
| 69 | 69 | $from = self::alias() . '/tmp/' . $logo; |
| 70 | 70 | $to = self::alias() . '/' . $logo; |
@@ -8,79 +8,79 @@ |
||
| 8 | 8 | |
| 9 | 9 | class ActionButton extends View |
| 10 | 10 | { |
| 11 | - public $defaultTemplate = 'action_button.html'; |
|
| 11 | + public $defaultTemplate = 'action_button.html'; |
|
| 12 | 12 | |
| 13 | - public $ui = 'basic inverted action button'; |
|
| 13 | + public $ui = 'basic inverted action button'; |
|
| 14 | 14 | |
| 15 | - /** |
|
| 16 | - * Icon that will appear on the button (top). |
|
| 17 | - * |
|
| 18 | - * @var string|array|Icon |
|
| 19 | - */ |
|
| 20 | - public $icon; |
|
| 15 | + /** |
|
| 16 | + * Icon that will appear on the button (top). |
|
| 17 | + * |
|
| 18 | + * @var string|array|Icon |
|
| 19 | + */ |
|
| 20 | + public $icon; |
|
| 21 | 21 | |
| 22 | - public $label; |
|
| 22 | + public $label; |
|
| 23 | 23 | |
| 24 | - public $element = 'a'; |
|
| 24 | + public $element = 'a'; |
|
| 25 | 25 | |
| 26 | - public $weight = 10; |
|
| 26 | + public $weight = 10; |
|
| 27 | 27 | |
| 28 | - public $callback; |
|
| 28 | + public $callback; |
|
| 29 | 29 | |
| 30 | - public function renderView() |
|
| 31 | - { |
|
| 32 | - $this->addIcon(); |
|
| 30 | + public function renderView() |
|
| 31 | + { |
|
| 32 | + $this->addIcon(); |
|
| 33 | 33 | |
| 34 | - $this->addLabel(); |
|
| 34 | + $this->addLabel(); |
|
| 35 | 35 | |
| 36 | - $this->addCallback(); |
|
| 36 | + $this->addCallback(); |
|
| 37 | 37 | |
| 38 | - parent::renderView(); |
|
| 39 | - } |
|
| 38 | + parent::renderView(); |
|
| 39 | + } |
|
| 40 | 40 | |
| 41 | - protected function addIcon() |
|
| 42 | - { |
|
| 43 | - if (! $icon = $this->getIcon()) return; |
|
| 41 | + protected function addIcon() |
|
| 42 | + { |
|
| 43 | + if (! $icon = $this->getIcon()) return; |
|
| 44 | 44 | |
| 45 | - $this->add($icon, 'Icon')->id = null; |
|
| 45 | + $this->add($icon, 'Icon')->id = null; |
|
| 46 | 46 | |
| 47 | - $this->addClass('icon'); |
|
| 47 | + $this->addClass('icon'); |
|
| 48 | 48 | |
| 49 | - return $this; |
|
| 50 | - } |
|
| 49 | + return $this; |
|
| 50 | + } |
|
| 51 | 51 | |
| 52 | - protected function addLabel() |
|
| 53 | - { |
|
| 54 | - $this->content = $this->label?: $this->content; |
|
| 52 | + protected function addLabel() |
|
| 53 | + { |
|
| 54 | + $this->content = $this->label?: $this->content; |
|
| 55 | 55 | |
| 56 | - return $this; |
|
| 57 | - } |
|
| 56 | + return $this; |
|
| 57 | + } |
|
| 58 | 58 | |
| 59 | - public function getIcon() |
|
| 60 | - { |
|
| 61 | - return is_object($this->icon)? $this->icon: new Icon($this->icon); |
|
| 62 | - } |
|
| 59 | + public function getIcon() |
|
| 60 | + { |
|
| 61 | + return is_object($this->icon)? $this->icon: new Icon($this->icon); |
|
| 62 | + } |
|
| 63 | 63 | |
| 64 | - public function callback($callable) |
|
| 65 | - { |
|
| 66 | - $this->callback = $callable; |
|
| 64 | + public function callback($callable) |
|
| 65 | + { |
|
| 66 | + $this->callback = $callable; |
|
| 67 | 67 | |
| 68 | - return $this; |
|
| 69 | - } |
|
| 68 | + return $this; |
|
| 69 | + } |
|
| 70 | 70 | |
| 71 | - public function addCallback() |
|
| 72 | - { |
|
| 73 | - if (!$callable = $this->callback) return; |
|
| 71 | + public function addCallback() |
|
| 72 | + { |
|
| 73 | + if (!$callable = $this->callback) return; |
|
| 74 | 74 | |
| 75 | - if (is_callable($callable)) { |
|
| 76 | - $callable = $this->add('jsCallback')->set($callable); |
|
| 77 | - } |
|
| 75 | + if (is_callable($callable)) { |
|
| 76 | + $callable = $this->add('jsCallback')->set($callable); |
|
| 77 | + } |
|
| 78 | 78 | |
| 79 | - if ($callable instanceof jsCallback) { |
|
| 80 | - $this->on('click', $callable); |
|
| 81 | - } |
|
| 79 | + if ($callable instanceof jsCallback) { |
|
| 80 | + $this->on('click', $callable); |
|
| 81 | + } |
|
| 82 | 82 | |
| 83 | - return $this; |
|
| 84 | - } |
|
| 83 | + return $this; |
|
| 84 | + } |
|
| 85 | 85 | |
| 86 | 86 | } |
@@ -40,7 +40,7 @@ discard block |
||
| 40 | 40 | |
| 41 | 41 | protected function addIcon() |
| 42 | 42 | { |
| 43 | - if (! $icon = $this->getIcon()) return; |
|
| 43 | + if (!$icon = $this->getIcon()) return; |
|
| 44 | 44 | |
| 45 | 45 | $this->add($icon, 'Icon')->id = null; |
| 46 | 46 | |
@@ -51,14 +51,14 @@ discard block |
||
| 51 | 51 | |
| 52 | 52 | protected function addLabel() |
| 53 | 53 | { |
| 54 | - $this->content = $this->label?: $this->content; |
|
| 54 | + $this->content = $this->label ?: $this->content; |
|
| 55 | 55 | |
| 56 | 56 | return $this; |
| 57 | 57 | } |
| 58 | 58 | |
| 59 | 59 | public function getIcon() |
| 60 | 60 | { |
| 61 | - return is_object($this->icon)? $this->icon: new Icon($this->icon); |
|
| 61 | + return is_object($this->icon) ? $this->icon : new Icon($this->icon); |
|
| 62 | 62 | } |
| 63 | 63 | |
| 64 | 64 | public function callback($callable) |
@@ -40,7 +40,9 @@ discard block |
||
| 40 | 40 | |
| 41 | 41 | protected function addIcon() |
| 42 | 42 | { |
| 43 | - if (! $icon = $this->getIcon()) return; |
|
| 43 | + if (! $icon = $this->getIcon()) { |
|
| 44 | + return; |
|
| 45 | + } |
|
| 44 | 46 | |
| 45 | 47 | $this->add($icon, 'Icon')->id = null; |
| 46 | 48 | |
@@ -70,7 +72,9 @@ discard block |
||
| 70 | 72 | |
| 71 | 73 | public function addCallback() |
| 72 | 74 | { |
| 73 | - if (!$callable = $this->callback) return; |
|
| 75 | + if (!$callable = $this->callback) { |
|
| 76 | + return; |
|
| 77 | + } |
|
| 74 | 78 | |
| 75 | 79 | if (is_callable($callable)) { |
| 76 | 80 | $callable = $this->add('jsCallback')->set($callable); |
@@ -20,7 +20,9 @@ discard block |
||
| 20 | 20 | // make sure the installation information is fresh |
| 21 | 21 | ModuleManager::clearCache(); |
| 22 | 22 | |
| 23 | - if (SystemCore::isInstalled()) return redirect('home'); |
|
| 23 | + if (SystemCore::isInstalled()) { |
|
| 24 | + return redirect('home'); |
|
| 25 | + } |
|
| 24 | 26 | |
| 25 | 27 | $epesi->title = __(':epesi > Installation', ['epesi' => config('epesi.app.title')]); |
| 26 | 28 | |
@@ -64,7 +66,9 @@ discard block |
||
| 64 | 66 | } |
| 65 | 67 | } |
| 66 | 68 | |
| 67 | - if (! $view) abort(404); |
|
| 69 | + if (! $view) { |
|
| 70 | + abort(404); |
|
| 71 | + } |
|
| 68 | 72 | |
| 69 | 73 | $epesi->add($view)->displayModuleContent($method, $args); |
| 70 | 74 | |
@@ -11,66 +11,66 @@ |
||
| 11 | 11 | |
| 12 | 12 | class SystemController extends Controller |
| 13 | 13 | { |
| 14 | - public function index() |
|
| 15 | - { |
|
| 16 | - return SystemCore::isInstalled()? redirect('home'): redirect('install'); |
|
| 17 | - } |
|
| 14 | + public function index() |
|
| 15 | + { |
|
| 16 | + return SystemCore::isInstalled()? redirect('home'): redirect('install'); |
|
| 17 | + } |
|
| 18 | 18 | |
| 19 | - public function install(Epesi $epesi) |
|
| 20 | - { |
|
| 21 | - // make sure the installation information is fresh |
|
| 22 | - ModuleManager::clearCache(); |
|
| 19 | + public function install(Epesi $epesi) |
|
| 20 | + { |
|
| 21 | + // make sure the installation information is fresh |
|
| 22 | + ModuleManager::clearCache(); |
|
| 23 | 23 | |
| 24 | - if (SystemCore::isInstalled()) return redirect('home'); |
|
| 24 | + if (SystemCore::isInstalled()) return redirect('home'); |
|
| 25 | 25 | |
| 26 | - $epesi->title = __(':epesi > Installation', ['epesi' => config('epesi.app.title')]); |
|
| 26 | + $epesi->title = __(':epesi > Installation', ['epesi' => config('epesi.app.title')]); |
|
| 27 | 27 | |
| 28 | - $epesi->initLayout('Centered'); |
|
| 28 | + $epesi->initLayout('Centered'); |
|
| 29 | 29 | |
| 30 | - $epesi->layout->set('logo', url('logo')); |
|
| 31 | - $epesi->layout->template->setHTML('copyright', config('epesi.app.copyright')); |
|
| 30 | + $epesi->layout->set('logo', url('logo')); |
|
| 31 | + $epesi->layout->template->setHTML('copyright', config('epesi.app.copyright')); |
|
| 32 | 32 | |
| 33 | - $epesi->add(new \Epesi\Core\System\SystemInstallWizard()); |
|
| 33 | + $epesi->add(new \Epesi\Core\System\SystemInstallWizard()); |
|
| 34 | 34 | |
| 35 | - return $epesi->response(); |
|
| 36 | - } |
|
| 35 | + return $epesi->response(); |
|
| 36 | + } |
|
| 37 | 37 | |
| 38 | - public function home() |
|
| 39 | - { |
|
| 40 | - return redirect(SystemCore::isInstalled()? \Epesi\Core\HomePage\Models\HomePage::pathOfUser(): 'install'); |
|
| 41 | - } |
|
| 38 | + public function home() |
|
| 39 | + { |
|
| 40 | + return redirect(SystemCore::isInstalled()? \Epesi\Core\HomePage\Models\HomePage::pathOfUser(): 'install'); |
|
| 41 | + } |
|
| 42 | 42 | |
| 43 | - public function logo() |
|
| 44 | - { |
|
| 45 | - $logoFile = \Epesi\Core\System\Logo\LogoSettings::getLogoFile(); |
|
| 43 | + public function logo() |
|
| 44 | + { |
|
| 45 | + $logoFile = \Epesi\Core\System\Logo\LogoSettings::getLogoFile(); |
|
| 46 | 46 | |
| 47 | - return response(File::get($logoFile), 200, ['Content-type' => File::mimeType($logoFile)])->setMaxAge(604800)->setPublic(); |
|
| 48 | - } |
|
| 47 | + return response(File::get($logoFile), 200, ['Content-type' => File::mimeType($logoFile)])->setMaxAge(604800)->setPublic(); |
|
| 48 | + } |
|
| 49 | 49 | |
| 50 | - public function view(Epesi $epesi, $module, $method = 'body', $args = []) |
|
| 51 | - { |
|
| 52 | - $epesi->initLayout(new LayoutView()); |
|
| 50 | + public function view(Epesi $epesi, $module, $method = 'body', $args = []) |
|
| 51 | + { |
|
| 52 | + $epesi->initLayout(new LayoutView()); |
|
| 53 | 53 | |
| 54 | - $alias = explode(':', $module); |
|
| 54 | + $alias = explode(':', $module); |
|
| 55 | 55 | |
| 56 | - $moduleAlias = $alias[0]; |
|
| 57 | - $viewAlias = $alias[1]?? null; |
|
| 56 | + $moduleAlias = $alias[0]; |
|
| 57 | + $viewAlias = $alias[1]?? null; |
|
| 58 | 58 | |
| 59 | - $view = null; |
|
| 60 | - if ($module = ModuleManager::getClass($moduleAlias, true)) { |
|
| 61 | - $viewClass = $module::view($viewAlias); |
|
| 59 | + $view = null; |
|
| 60 | + if ($module = ModuleManager::getClass($moduleAlias, true)) { |
|
| 61 | + $viewClass = $module::view($viewAlias); |
|
| 62 | 62 | |
| 63 | - if (class_exists($viewClass)) { |
|
| 64 | - $view = new $viewClass(); |
|
| 65 | - } |
|
| 66 | - } |
|
| 63 | + if (class_exists($viewClass)) { |
|
| 64 | + $view = new $viewClass(); |
|
| 65 | + } |
|
| 66 | + } |
|
| 67 | 67 | |
| 68 | - if (! $view) abort(404); |
|
| 68 | + if (! $view) abort(404); |
|
| 69 | 69 | |
| 70 | - $epesi->add($view)->displayModuleContent($method, $args); |
|
| 70 | + $epesi->add($view)->displayModuleContent($method, $args); |
|
| 71 | 71 | |
| 72 | - $epesi->setLocation($view->location()); |
|
| 72 | + $epesi->setLocation($view->location()); |
|
| 73 | 73 | |
| 74 | - return $epesi->response(); |
|
| 75 | - } |
|
| 74 | + return $epesi->response(); |
|
| 75 | + } |
|
| 76 | 76 | } |
@@ -13,7 +13,7 @@ discard block |
||
| 13 | 13 | { |
| 14 | 14 | public function index() |
| 15 | 15 | { |
| 16 | - return SystemCore::isInstalled()? redirect('home'): redirect('install'); |
|
| 16 | + return SystemCore::isInstalled() ? redirect('home') : redirect('install'); |
|
| 17 | 17 | } |
| 18 | 18 | |
| 19 | 19 | public function install(Epesi $epesi) |
@@ -37,7 +37,7 @@ discard block |
||
| 37 | 37 | |
| 38 | 38 | public function home() |
| 39 | 39 | { |
| 40 | - return redirect(SystemCore::isInstalled()? \Epesi\Core\HomePage\Models\HomePage::pathOfUser(): 'install'); |
|
| 40 | + return redirect(SystemCore::isInstalled() ? \Epesi\Core\HomePage\Models\HomePage::pathOfUser() : 'install'); |
|
| 41 | 41 | } |
| 42 | 42 | |
| 43 | 43 | public function logo() |
@@ -65,7 +65,7 @@ discard block |
||
| 65 | 65 | } |
| 66 | 66 | } |
| 67 | 67 | |
| 68 | - if (! $view) abort(404); |
|
| 68 | + if (!$view) abort(404); |
|
| 69 | 69 | |
| 70 | 70 | $epesi->add($view)->displayModuleContent($method, $args); |
| 71 | 71 | |
@@ -28,8 +28,8 @@ discard block |
||
| 28 | 28 | { |
| 29 | 29 | $modules = ModuleManager::getAll(); |
| 30 | 30 | |
| 31 | - return $modules->filter(function ($subModuleClass) use ($modules) { |
|
| 32 | - return ! $modules->map(function($moduleClass){ |
|
| 31 | + return $modules->filter(function($subModuleClass) use ($modules) { |
|
| 32 | + return !$modules->map(function($moduleClass) { |
|
| 33 | 33 | return $moduleClass::namespace(); |
| 34 | 34 | })->contains($subModuleClass::parentNamespace()); |
| 35 | 35 | })->sort(); |
@@ -60,7 +60,7 @@ discard block |
||
| 60 | 60 | |
| 61 | 61 | $section->add($label, 'title')->setStyle('float', 'right'); |
| 62 | 62 | |
| 63 | - $submodules = ModuleManager::getAll()->filter(function ($subModuleClass) use ($moduleClass) { |
|
| 63 | + $submodules = ModuleManager::getAll()->filter(function($subModuleClass) use ($moduleClass) { |
|
| 64 | 64 | return $subModuleClass::isSubModuleOf($moduleClass); |
| 65 | 65 | }); |
| 66 | 66 | |
@@ -72,11 +72,11 @@ discard block |
||
| 72 | 72 | |
| 73 | 73 | public function formatModuleInfo($moduleClass) |
| 74 | 74 | { |
| 75 | - $moduleInfo = (array) ($moduleClass::info()?: __(' No details provided by author')); |
|
| 75 | + $moduleInfo = (array) ($moduleClass::info() ?: __(' No details provided by author')); |
|
| 76 | 76 | |
| 77 | 77 | $ret = []; |
| 78 | 78 | foreach ($moduleInfo as $label => $text) { |
| 79 | - $ret[] = (is_string($label)? "<strong>$label</strong>: ": '') . $text; |
|
| 79 | + $ret[] = (is_string($label) ? "<strong>$label</strong>: " : '') . $text; |
|
| 80 | 80 | } |
| 81 | 81 | |
| 82 | 82 | return implode('<br>', $ret); |
@@ -109,12 +109,12 @@ discard block |
||
| 109 | 109 | |
| 110 | 110 | $form = $view->add(new Form()); |
| 111 | 111 | foreach ($recommended as $childModule) { |
| 112 | - if (! ModuleManager::isAvailable($childModule)) continue; |
|
| 112 | + if (!ModuleManager::isAvailable($childModule)) continue; |
|
| 113 | 113 | |
| 114 | 114 | $form->addField($childModule::alias(), ['CheckBox', 'caption' => $childModule::label()]); |
| 115 | 115 | } |
| 116 | 116 | |
| 117 | - $form->onSubmit(function ($form) use ($moduleClass) { |
|
| 117 | + $form->onSubmit(function($form) use ($moduleClass) { |
|
| 118 | 118 | ob_start(); |
| 119 | 119 | ModuleManager::install($moduleClass, array_keys($form->getValues(), true)); |
| 120 | 120 | |
@@ -123,7 +123,7 @@ discard block |
||
| 123 | 123 | } |
| 124 | 124 | |
| 125 | 125 | $view->add(['Button', __('Install'), 'primary'])->on('click', [ |
| 126 | - isset($form)? $form->submit(): $installCallback |
|
| 126 | + isset($form) ? $form->submit() : $installCallback |
|
| 127 | 127 | ]); |
| 128 | 128 | }); |
| 129 | 129 | |
@@ -51,8 +51,7 @@ discard block |
||
| 51 | 51 | $this->addUninstallButton($section, $moduleClass); |
| 52 | 52 | |
| 53 | 53 | // $this->addReinstallButton($section, $moduleClass); |
| 54 | - } |
|
| 55 | - else { |
|
| 54 | + } else { |
|
| 56 | 55 | $label = ['Label', __('Available'), 'yellow']; |
| 57 | 56 | |
| 58 | 57 | $this->addInstallButton($section, $moduleClass); |
@@ -64,7 +63,9 @@ discard block |
||
| 64 | 63 | return $subModuleClass::isSubModuleOf($moduleClass); |
| 65 | 64 | }); |
| 66 | 65 | |
| 67 | - if ($submodules->isEmpty()) continue; |
|
| 66 | + if ($submodules->isEmpty()) { |
|
| 67 | + continue; |
|
| 68 | + } |
|
| 68 | 69 | |
| 69 | 70 | $this->addAccordion($section, $submodules); |
| 70 | 71 | } |
@@ -109,7 +110,9 @@ discard block |
||
| 109 | 110 | |
| 110 | 111 | $form = $view->add(new Form()); |
| 111 | 112 | foreach ($recommended as $childModule) { |
| 112 | - if (! ModuleManager::isAvailable($childModule)) continue; |
|
| 113 | + if (! ModuleManager::isAvailable($childModule)) { |
|
| 114 | + continue; |
|
| 115 | + } |
|
| 113 | 116 | |
| 114 | 117 | $form->addField($childModule::alias(), ['CheckBox', 'caption' => $childModule::label()]); |
| 115 | 118 | } |
@@ -43,7 +43,7 @@ discard block |
||
| 43 | 43 | $accordion = $container->add(['Accordion', 'type' => ['styled', 'fluid'], 'settings' => ['animateChildren' => false]])->setStyle(['max-width' => '800px', 'margin-left' => 'auto', 'margin-right' => 'auto']); |
| 44 | 44 | |
| 45 | 45 | if ($container == $this) { |
| 46 | - $this->accordion = $accordion; |
|
| 46 | + $this->accordion = $accordion; |
|
| 47 | 47 | } |
| 48 | 48 | |
| 49 | 49 | foreach ($modules as $moduleClass) { |
@@ -92,17 +92,17 @@ discard block |
||
| 92 | 92 | |
| 93 | 93 | public function addInstallButton($container, $moduleClass) |
| 94 | 94 | { |
| 95 | - $button = $container->add(['Button', __('Install'), 'class' => ['green']]); |
|
| 95 | + $button = $container->add(['Button', __('Install'), 'class' => ['green']]); |
|
| 96 | 96 | |
| 97 | - $callback = $installCallback = $this->add('jsCallback')->set(function() use ($moduleClass, $container) { |
|
| 97 | + $callback = $installCallback = $this->add('jsCallback')->set(function() use ($moduleClass, $container) { |
|
| 98 | 98 | ob_start(); |
| 99 | 99 | ModuleManager::install($moduleClass); |
| 100 | 100 | |
| 101 | 101 | $message = ob_get_clean(); |
| 102 | 102 | |
| 103 | 103 | return [ |
| 104 | - $this->notifySuccess($message), |
|
| 105 | - new jsReload($this->accordion), |
|
| 104 | + $this->notifySuccess($message), |
|
| 105 | + new jsReload($this->accordion), |
|
| 106 | 106 | ]; |
| 107 | 107 | }); |
| 108 | 108 | |
@@ -150,17 +150,17 @@ discard block |
||
| 150 | 150 | |
| 151 | 151 | public function addUninstallButton($container, $moduleClass) |
| 152 | 152 | { |
| 153 | - $button = $container->add(['Button', __('Uninstall'), 'class' => ['red']]); |
|
| 153 | + $button = $container->add(['Button', __('Uninstall'), 'class' => ['red']]); |
|
| 154 | 154 | |
| 155 | - $callback = $uninstallCallback = $button->add(['jsCallback', 'confirm' => __('Are you sure you want to uninstall :module', ['module' => $moduleClass::label()])])->set(function() use ($moduleClass) { |
|
| 156 | - ob_start(); |
|
| 155 | + $callback = $uninstallCallback = $button->add(['jsCallback', 'confirm' => __('Are you sure you want to uninstall :module', ['module' => $moduleClass::label()])])->set(function() use ($moduleClass) { |
|
| 156 | + ob_start(); |
|
| 157 | 157 | ModuleManager::uninstall($moduleClass); |
| 158 | 158 | |
| 159 | 159 | $message = ob_get_clean(); |
| 160 | 160 | |
| 161 | 161 | return [ |
| 162 | - $this->notifySuccess($message), |
|
| 163 | - new jsReload($this->accordion), |
|
| 162 | + $this->notifySuccess($message), |
|
| 163 | + new jsReload($this->accordion), |
|
| 164 | 164 | ]; |
| 165 | 165 | }); |
| 166 | 166 | |
@@ -195,12 +195,12 @@ discard block |
||
| 195 | 195 | |
| 196 | 196 | public function addClearCacheButton() |
| 197 | 197 | { |
| 198 | - ActionBar::addItemButton([__('Clear Cache'), 'icon' => 'refresh', 'hint' => __('Clears module cache and re-discovers all available modules')])->callback(function($callback) { |
|
| 198 | + ActionBar::addItemButton([__('Clear Cache'), 'icon' => 'refresh', 'hint' => __('Clears module cache and re-discovers all available modules')])->callback(function($callback) { |
|
| 199 | 199 | ModuleManager::clearCache(); |
| 200 | 200 | |
| 201 | 201 | return [ |
| 202 | - new jsReload($this->accordion), |
|
| 203 | - $this->notifySuccess(__('Cache cleared!')) |
|
| 202 | + new jsReload($this->accordion), |
|
| 203 | + $this->notifySuccess(__('Cache cleared!')) |
|
| 204 | 204 | ]; |
| 205 | 205 | }); |
| 206 | 206 | } |