Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions en/appendices/3-0-migration-guide.rst
Original file line number Diff line number Diff line change
Expand Up @@ -266,6 +266,7 @@ BakeShell / TemplateTask
- Bake templates have been moved under ``src/Template/Bake``.
- The syntax of Bake templates now uses erb-style tags (``<% %>``) to denote
templating logic, allowing php code to be treated as plain text.
- The ``bake view`` command has been renamed ``bake template``.

Event
=====
Expand Down
17 changes: 8 additions & 9 deletions en/bake/usage.rst
Original file line number Diff line number Diff line change
Expand Up @@ -28,19 +28,18 @@ tasks. You should see something like::

Available bake commands:

- all
- fixture
- test
- view
- all
- behavior
- helper
- shell
- cell
- component
- controller
- fixture
- helper
- model
- plugin
- project
- cell
- component
- shell
- template
- test

By using `cake bake [name]` you can invoke a specific bake task.

Expand Down
2 changes: 1 addition & 1 deletion en/tutorials-and-examples/blog/part-three.rst
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ Create all files by launching bake commands::

bin/cake bake model Categories
bin/cake bake controller Categories
bin/cake bake view Categories
bin/cake bake template Categories

The bake tool has created all your files in a snap. You can give them a quick
read if you want re-familiarize yourself with how CakePHP works.
Expand Down
1 change: 1 addition & 0 deletions fr/appendices/3-0-migration-guide.rst
Original file line number Diff line number Diff line change
Expand Up @@ -287,6 +287,7 @@ BakeShell / TemplateTask
- Les templates de bake ont été déplacés vers ``src/Template/Bake``.
- La syntaxe des templates Bake utilise maintenant des balises de type erb
(``<% %>``) pour désigner le templating.
- La commande ``bake view`` a été renommée ``bake template``.

Event
=====
Expand Down
15 changes: 7 additions & 8 deletions fr/bake/usage.rst
Original file line number Diff line number Diff line change
Expand Up @@ -32,18 +32,17 @@ des tâches disponibles. Vous devriez voir quelquechose comme ceci::
Les commandes disponibles de bake:

- all
- fixture
- test
- view
- behavior
- helper
- shell
- cell
- component
- controller
- fixture
- helper
- model
- plugin
- project
- cell
- component
- shell
- template
- test

En utilisant `cake bake [name]` vous pouvez faire appel à une tâche
spécifique de bake.
Expand Down
2 changes: 1 addition & 1 deletion fr/tutorials-and-examples/blog/part-three.rst
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ Créez tous les fichiers en lançant les commandes de bake suivantes::

bin/cake bake model Categories
bin/cake bake controller Categories
bin/cake bake view Categories
bin/cake bake template Categories

L'outil bake a créé tous les fichiers en un clin d'œil. Vous pouvez les
lire rapidement si vous voulez vous re-familiariser avec le fonctionnement de
Expand Down