summaryrefslogtreecommitdiff
path: root/app-from-scratch.sh
diff options
context:
space:
mode:
Diffstat (limited to 'app-from-scratch.sh')
-rw-r--r--app-from-scratch.sh23
1 files changed, 23 insertions, 0 deletions
diff --git a/app-from-scratch.sh b/app-from-scratch.sh
index 6b9ebb3..c84fa0a 100644
--- a/app-from-scratch.sh
+++ b/app-from-scratch.sh
@@ -293,3 +293,26 @@ git commit -m "Date picker in DD/MM/YYYY order"
editor plugins/CustomTheme/src/Shell/BakeShell.php
git add ../app-from-scratch.sh plugins/CustomTheme/src/Shell/BakeShell.php
git commit -m "bake all : skip some models and actions, via configuration"
+# 76ab63096a25f5bf7b9d076cdc9ab3fc5218d216
+
+# bake: add Search filter support
+
+# https://github.com/FriendsOfCake/search
+composer.phar require friendsofcake/search
+cake plugin load Search
+git add src/Application.php config/bootstrap.php composer.json composer.lock
+
+editor plugins/CustomTheme/src/View/Helper/BakeExtraHelper.php $p/Model/table.twig
+git add plugins/CustomTheme/src/View/Helper/BakeExtraHelper.php $p/Model/table.twig
+
+editor plugins/CustomTheme/config/bootstrap.php
+git add plugins/CustomTheme/config/bootstrap.php
+
+editor $p/Model/table.twig $p/Element/Controller/index.twig $p/Template/index.twig
+git add $p/Model/table.twig $p/Element/Controller/index.twig $p/Template/index.twig
+
+editor src/Template/Layout/default.ctp webroot/css/local.css
+git add src/Template/Layout/default.ctp webroot/css/local.css
+
+git add ../app-from-scratch.sh
+git commit -m "bake add Search filter support"