1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<?php
namespace Laminas\Form;
use ArrayAccess;
use Laminas\InputFilter\InputFilterInterface;
interface FormInterface extends FieldsetInterface
{
const BIND_ON_VALIDATE = 0x00;
const BIND_MANUAL = 0x01;
const VALIDATE_ALL = 0x10;
const VALUES_NORMALIZED = 0x11;
const VALUES_RAW = 0x12;
const VALUES_AS_ARRAY = 0x13;
/**
* Set data to validate and/or populate elements
*
* Typically, also passes data on to the composed input filter.
*
* @param array|ArrayAccess $data
* @return $this
*/
public function setData($data);
/**
* Bind an object to the element
*
* Allows populating the object with validated values.
*
* @param object $object
* @param int $flags
* @return mixed
*/
public function bind($object, $flags = FormInterface::VALUES_NORMALIZED);
/**
* Whether or not to bind values to the bound object when validation succeeds
*
* @param int $bindOnValidateFlag
* @return void
*/
public function setBindOnValidate($bindOnValidateFlag);
/**
* Set input filter
*
* @param InputFilterInterface $inputFilter
* @return $this
*/
public function setInputFilter(InputFilterInterface $inputFilter);
/**
* Retrieve input filter
*
* @return InputFilterInterface
*/
public function getInputFilter();
/**
* Validate the form
*
* Typically, will proxy to the composed input filter.
*
* @return bool
*/
public function isValid();
/**
* Retrieve the validated data
*
* By default, retrieves normalized values; pass one of the VALUES_*
* constants to shape the behavior.
*
* @param int $flag
* @return array|object
*/
public function getData($flag = FormInterface::VALUES_NORMALIZED);
/**
* Set the validation group (set of values to validate)
*
* Typically, proxies to the composed input filter
*
* @return $this
*/
public function setValidationGroup();
}