Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
cake17 committed Jun 20, 2016
1 parent 9a46d53 commit 76fea1e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions fr/core-libraries/helpers/form.rst
Original file line number Diff line number Diff line change
Expand Up @@ -172,15 +172,16 @@ Il y plusieurs options pour create():

.. deprecated:: 2.8.0
L'option ``$options['action']`` a été dépréciée depuis 2.8.0. Utilisez
l'option ``$options['url']`` à la place.
les options ``$options['url']`` et ``$options['id']`` à la place.

* ``$options['url']`` Si l'action que vous désirez appeler avec le formulaire
n'est pas dans le controller courant, vous pouvez spécifier une URL
dans le formulaire en utilisant la clé 'url' de votre tableau $options.
L'URL ainsi fournie peut être relative à votre application CakePHP ::

echo $this->Form->create(false, array(
'url' => array('controller' => 'recipes', 'action' => 'add')
'url' => array('controller' => 'recipes', 'action' => 'add'),
'id' => 'RecipesAdd'
));

Affichera:
Expand Down

0 comments on commit 76fea1e

Please sign in to comment.