Form Help Messages and Descriptions =================================== Help Messages ------------- Help messages are short notes that are rendered together with form fields. They are generally used to show additional information so the user can complete the form element faster and more accurately. The text is not escaped, so HTML can be used. Example ^^^^^^^ .. code-block:: php with('General') ->add('title', null, array( 'help' => 'Set the title of a web page' )) ->add('keywords', null, array( 'help' => 'Set the keywords of a web page' )) ->end() ; } } Alternative Ways To Define Help Messages ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ All at once .. code-block:: php with('General') ->add('title') ->add('keywords') ->setHelps(array( 'title' => 'Set the title of a web page', 'keywords' => 'Set the keywords of a web page', )) ->end() ; } } or step by step. .. code-block:: php with('General') ->add('title') ->add('keywords') ->setHelp('title', 'Set the title of a web page') ->setHelp('keywords', 'Set the keywords of a web page') ->end() ; } } This can be very useful if you want to apply general help messages via an ``AdminExtension``. This Extension for example adds a note field to some entities which use a custom trait. .. code-block:: php add('note') ; } // here we don't add the field, because we would like to define // the place manually in the admin. But if the filed is available, // we want to add the following help message to the field. /** * @param FormMapper $formMapper */ public function configureFormFields(FormMapper $formMapper) { $formMapper ->addHelp('note', 'Use this field for an internal note.') ; } // if the field exists, add it in a special tab on the show view. /** * @param ShowMapper $showMapper */ public function configureShowFields(ShowMapper $showMapper) { $showMapper ->with('Internal') ->add('note') ->end() ; } } Help messages in a sub-field ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ .. code-block:: php add('enabled') ->add('settings', 'sonata_type_immutable_array', array( 'keys' => array( array('content', 'textarea', array( 'sonata_help' => 'Set the content' )), array('public', 'checkbox', array()), )) ; } } Advanced usage ^^^^^^^^^^^^^^ Since help messages can contain HTML they can be used for more advanced solutions. See the cookbook entry :doc:`Showing image previews <../cookbook/recipe_image_previews>` for a detailed example of how to use help messages to display an image tag. Form Group Descriptions ----------------------- A form group description is a block of text rendered below the group title. These can be used to describe a section of a form. The text is not escaped, so HTML can be used. Example ^^^^^^^ .. code-block:: php with('General', array( 'description' => 'This section contains general settings for the web page' )) ->add('title', null, array( 'help' => 'Set the title of a web page' )) ->add('keywords', null, array( 'help' => 'Set the keywords of a web page' )) ->end() ; } }