bootstrapCli(); } /* * Only try to load DebugKit in development mode * Debug Kit should not be installed on a production system */ // DebugKit (cf https://book.cakephp.org/debugkit/3/fr/index.html) if (Configure::read('debug')) { $this->addPlugin('DebugKit'); // Whitelister mes sites locaux : Configure::write('DebugKit.safeTld', ['localhost', 'dev', 'invalid', 'test', 'example', 'local', 'devv']); /* (EP 20200316 added pour éviter l'erreur suivante retrouvée dans logs/error.log : * 2020-03-16 12:20:28 Warning: DebugKit is disabling itself as your host `labinvent.devv` is not in the known safe list of top-level-domains * (localhost, invalid, test, example, local). If you would like to force DebugKit on * use the `DebugKit.forceEnable` Configure option. */ //Configure::write('DebugKit.forceEnable', true); // Autres options dispo : //Configure::write('DebugKit.ignoreAuthorization', true); //Configure::write('DebugKit.panels', ['DebugKit.Packages' => false]); // Maintenant on peut charger DebugKit normalement //Plugin::load('DebugKit', ['bootstrap' => true]); // ORIG //Plugin::load('DebugKit', ['bootstrap' => true, 'routes' => true]); } // Load more plugins here /* (EP) * Pour générer du pdf (à la place de fpdf qui ne marche pas au CRAL) */ $this->addPlugin('Dompdf'); /* * Bootstrap-ui (EP added 28/1/2020) * https://github.com/FriendsOfCake/bootstrap-ui/tree/develop */ $this->addPlugin('BootstrapUI'); } /** * Setup the middleware queue your application will use. * * @param \Cake\Http\MiddlewareQueue $middlewareQueue The middleware queue to setup. * @return \Cake\Http\MiddlewareQueue The updated middleware queue. */ public function middleware($middlewareQueue) { $middlewareQueue // Catch any exceptions in the lower layers, // and make an error page/response ->add(new ErrorHandlerMiddleware(null, Configure::read('Error'))) // Handle plugin/theme assets like CakePHP normally does. ->add(new AssetMiddleware([ 'cacheTime' => Configure::read('Asset.cacheTime'), ])) // Add routing middleware. // If you have a large number of routes connected, turning on routes // caching in production could improve performance. For that when // creating the middleware instance specify the cache config name by // using it's second constructor argument: // `new RoutingMiddleware($this, '_cake_routes_')` ->add(new RoutingMiddleware($this)); return $middlewareQueue; } /** * @return void */ protected function bootstrapCli() { try { $this->addPlugin('Bake'); } catch (MissingPluginException $e) { // Do not halt if the plugin is missing } // cf https://book.cakephp.org/3.0/en/migrations.html $this->addPlugin('Migrations'); // Load more plugins here } }