vue formulaire, utilisation de formRow pour tous
[zf2.biz/galerie.git] / module / Galerie / src / Galerie / Form / galerie.form.config.php
1 <?php
2 return array(
3     array(
4         'name' => 'id',
5         'attributes' => array(
6             'type' => 'hidden',
7         ),
8     ),
9     array(
10         'name' => 'name',
11         'attributes' => array(
12             'type' => 'text',
13         ),
14         'options' => array(
15             'label' => $this->translate('Galerie_form_label_name'),
16         ),
17     ),
18     array(
19         'name' => 'description',
20         'attributes' => array(
21             'type' => 'textarea',
22         ),
23         'options' => array(
24             'label' => $this->translate('Galerie_form_label_description'),
25         ),
26     ),
27     array(
28         'name' => 'submit',
29         'attributes' => array(
30             'type' => 'submit',
31             'value' => 'Valider',
32             'id' => 'submit_galerie_form',
33         ),
34     ),
35 );