summaryrefslogtreecommitdiff
path: root/fai_gestion/config/bootstrap.php
diff options
context:
space:
mode:
Diffstat (limited to 'fai_gestion/config/bootstrap.php')
-rw-r--r--fai_gestion/config/bootstrap.php11
1 files changed, 11 insertions, 0 deletions
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.
+ */