1 <?php
2
3 namespace Balance\Form\Search;
4
5 use Balance\Model\AccountType;
6 use Zend\Form\Form;
7
8 9 10
11 class Accounts extends Form
12 {
13 14 15
16 public function init()
17 {
18
19 $this->add(array(
20 'type' => 'Select',
21 'name' => 'type',
22 'options' => array(
23 'label' => 'Tipo',
24 'value_options' => (new AccountType())->getDefinition(),
25 ),
26 ));
27
28
29 $this->add(array(
30 'type' => 'Text',
31 'name' => 'keywords',
32 'options' => array(
33 'label' => 'Palavras-Chave',
34 ),
35 ));
36 }
37 }
38