From b59164b0b7451905adcca244e6395281eb0633ca Mon Sep 17 00:00:00 2001 From: Ludovic Pouzenc Date: Fri, 20 Jul 2018 00:41:45 +0200 Subject: bake add Search filter support --- fai_gestion/config/bootstrap.php | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'fai_gestion/config/bootstrap.php') diff --git a/fai_gestion/config/bootstrap.php b/fai_gestion/config/bootstrap.php index 24f6908..9a77fca 100644 --- a/fai_gestion/config/bootstrap.php +++ b/fai_gestion/config/bootstrap.php @@ -205,3 +205,14 @@ FrozenDate::setToStringFormat('yyyy-MM-dd'); // For any immutable Date //Inflector::rules('transliteration', ['/å/' => 'aa']); Inflector::rules('uninflected', ['relais']); Inflector::rules('irregular', ['interesse' => 'interesses']); + +/* + * Note : Cake 3.6 introduce new way of loading plugins + * src/Application.php: + * public function bootstrap() + * { + * #[...] + * $this->addPlugin('Search'); + * } + * Old-style was adding Plugin::load('Search'); in this file. + */ -- cgit v1.1