vue formulaire, utilisation de formRow pour tous
[zf2.biz/galerie.git] / module / Galerie / view / galerie / index / edit.phtml
1 <?php if ($is_new): ?>
2 <h1><?php echo $this->translate('Galerie_add_title', 'galerie'); ?></h1>
3 <?php else: ?>
4 <h1><?php echo $this->translate('Galerie_edit_title', 'galerie'); ?></h1>
5 <?php endif; ?>
6
7 <?php
8 echo $this->form()->openTag($form);
9 echo $this->formRow($form->get('id'));
10 echo $this->formRow($form->get('name'));
11 echo $this->formRow($form->get('description'));
12 echo $this->formRow($form->get('submit'));
13 echo $this->form()->closeTag($form);
14 ?>