1 | <?php |
||
14 | class Collection extends Input implements ElementFactoryAwareInterface |
||
15 | { |
||
16 | use HasChildrenTrait; |
||
17 | use HasLabelTrait; |
||
18 | use HasHintTrait; |
||
19 | use HasFiltersTrait; |
||
20 | use HasValidationRulesTrait; |
||
21 | |||
22 | 4 | protected function getDefaultSpecs() |
|
28 | |||
29 | /** |
||
30 | * Generate the namespaced field name of an element inside the fielset |
||
31 | * |
||
32 | * @param string $name |
||
33 | * |
||
34 | * @return string |
||
35 | */ |
||
36 | 4 | protected function getFullChildName($name) |
|
46 | |||
47 | 1 | public function prepareInputFilter(InputFilter $inputFilter) |
|
56 | } |
||
57 |