mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
3df7d828eb
Fixed syntax error in french translations. Removed 'required' on image validation which was breaking tests
43 lines
1.2 KiB
PHP
43 lines
1.2 KiB
PHP
<?php namespace BookStack\Providers;
|
|
|
|
use BookStack\Services\SettingService;
|
|
use BookStack\Setting;
|
|
use Illuminate\Support\ServiceProvider;
|
|
use Validator;
|
|
|
|
class AppServiceProvider extends ServiceProvider
|
|
{
|
|
/**
|
|
* Bootstrap any application services.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function boot()
|
|
{
|
|
// Custom validation methods
|
|
Validator::extend('is_image', function ($attribute, $value, $parameters, $validator) {
|
|
$imageMimes = ['image/png', 'image/bmp', 'image/gif', 'image/jpeg', 'image/jpg', 'image/tiff', 'image/webp'];
|
|
return in_array($value->getMimeType(), $imageMimes);
|
|
});
|
|
|
|
\Blade::directive('icon', function ($expression) {
|
|
return "<?php echo icon($expression); ?>";
|
|
});
|
|
|
|
// Allow longer string lengths after upgrade to utf8mb4
|
|
\Schema::defaultStringLength(191);
|
|
}
|
|
|
|
/**
|
|
* Register any application services.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function register()
|
|
{
|
|
$this->app->singleton(SettingService::class, function ($app) {
|
|
return new SettingService($app->make(Setting::class), $app->make('Illuminate\Contracts\Cache\Repository'));
|
|
});
|
|
}
|
|
}
|