Zend Framework 2表单元素选择和Doctrine 2的结果

时间:2013-11-07 08:35:27

标签: php doctrine-orm zend-framework2 zend-form-select

我在ZF2中遇到表单元素选择问题。 我创建了查询原则2并且具有良好的结果对象列表。

$langs = $this->getEntityManager()->getRepository('Application\Entity\Langs')->findAll();

创建简单的表单:

class Coupon extends Form
{
    protected $objectManager;

    public function __construct($name = null)
    {        
        parent::__construct('coupon');

        $this->setAttribute('method', 'post');

        $this
             ->setAttribute('method', 'post')
             ->setHydrator(new ClassMethodsHydrator(false))
         ;

    $this->add(array(
            'name' => 'id',
            'attributes' => array(
                'type'  => 'hidden',
            ),
        ));
     }

   $this->add(array(
         'type' => 'Zend\Form\Element\Select',
         'name' => 'language',
         'attributes' => array(
             'class' => 'form-control',
         ),
         'options' => array(
                 'label' => 'default.form.message',
                 'empty_option'    => '--- choose formElementName ---',
                 'value_options' => array(
                         '0' => 'French',
                         '1' => 'English',
                         '2' => 'Japanese',
                         '3' => 'Chinese',
                 ),
         )
    ));

}

如何将结果($ langs)转换为value_options的数组 - zend元素选择? 我该怎么用?

1 个答案:

答案 0 :(得分:0)

我解决了。

我创建

public function getFormElementConfig()
    {

        return array(
            'invokables' => array(
                'Coupon' => 'Application\Form\Langs',
            ),
            'initializers' => array(
                'ObjectManagerInitializer' => function ($element, $formElements) {
                    if ($element instanceof ObjectManagerAwareInterface) {

                        $services      = $formElements->getServiceLocator();
                        $entityManager = $services->get('Doctrine\ORM\EntityManager');
                        $element->setObjectManager($entityManager);
                    }
                },
            ),
        );

并在表单中添加init:

public function init()
    {
        parent::init();

        $this->add(
            array(
                'type' => 'DoctrineModule\Form\Element\ObjectSelect',
                'name' => 'messages',
                'options' => array(
                    'object_manager' => $this->getObjectManager(),
                    'target_class'   => 'Application\Entity\Langs',
                    'property'       => 'title',
                ),
            )
        );
    }

它有效:) 山姆先生。