我有一个视图助手,它返回一个名为$this->getTypes();
我已将其设置为可调用:
'view_helpers' => array(
'invokables' => array(
'getTypes' => 'Account\View\Helper\GetTypes',
),
),
如果我在视图中回显它可以看到数组,但在表单中它会失败。
我想要类似的东西:
$this->add(array(
'name' => 'type_id',
'type' => 'Zend\Form\Element\Select',
'attributes' => array(
'required' => 'required',
),
'options' => array(
'label' => 'Type *',
'value_options' => $this->getTypes(),
),
));
有任何想法吗?