という配列を返すビューヘルパーがあります$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(),
),
));
何か案は?