diff options
author | Ludovic Pouzenc <ludovic@pouzenc.fr> | 2018-07-20 00:41:45 +0200 |
---|---|---|
committer | Ludovic Pouzenc <ludovic@pouzenc.fr> | 2018-07-20 00:41:45 +0200 |
commit | b59164b0b7451905adcca244e6395281eb0633ca (patch) | |
tree | 098111b525b796221a931aaae5c1688cf1a45d88 /fai_gestion/src | |
parent | 76ab63096a25f5bf7b9d076cdc9ab3fc5218d216 (diff) | |
download | chd_gestion-b59164b0b7451905adcca244e6395281eb0633ca.zip chd_gestion-b59164b0b7451905adcca244e6395281eb0633ca.tar.gz chd_gestion-b59164b0b7451905adcca244e6395281eb0633ca.tar.bz2 |
bake add Search filter support
Diffstat (limited to 'fai_gestion/src')
-rw-r--r-- | fai_gestion/src/Application.php | 2 | ||||
-rw-r--r-- | fai_gestion/src/Template/Layout/default.ctp | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/fai_gestion/src/Application.php b/fai_gestion/src/Application.php index 48484b4..10c630b 100644 --- a/fai_gestion/src/Application.php +++ b/fai_gestion/src/Application.php @@ -35,6 +35,8 @@ class Application extends BaseApplication */ public function bootstrap() { + $this->addPlugin('Search'); + // Call parent to load bootstrap from files. parent::bootstrap(); diff --git a/fai_gestion/src/Template/Layout/default.ctp b/fai_gestion/src/Template/Layout/default.ctp index caf014e..b412f64 100644 --- a/fai_gestion/src/Template/Layout/default.ctp +++ b/fai_gestion/src/Template/Layout/default.ctp @@ -28,6 +28,7 @@ $cakeDescription = 'CakePHP: the rapid development php framework'; <?= $this->Html->css('base.css') ?> <?= $this->Html->css('style.css') ?> + <?= $this->Html->css('local.css') ?> <?= $this->fetch('meta') ?> <?= $this->fetch('css') ?> |