[ 'language' => 'fr', 'css' => 'build/panel.css', 'install' => true, ], // Sitemapper plugin options 'kirbyzone.sitemapper' => [ 'intro' => false, 'byLine' => 'Sitemap generated with Sitemapper by Kirbyzone.' ], // Hooks 'hooks' => [ 'file.create:after' => function($file) { // Populate file_type field with $file->type() method after file creation if ($file->type()) { $file->update([ 'file_type' => $file->type() ]); } } ], // Thumbnails and srcsets presets 'thumbs' => [ 'srcsets' => [ 'default' => [ '640w' => ['width' => 640, 'quality' => 80], '1280w' => ['width' => 1280, 'quality' => 80], '1920w' => ['width' => 1920, 'quality' => 80], '2560w' => ['width' => 2560, 'quality' => 80], '3840w' => ['width' => 3840, 'quality' => 80] ] ] ] ];