在单选或复选框项下嵌套字段集:Zend Framework 2

问题描述 投票:0回答:1

我想在每个单选/复选框项目下创建一个字段集。

例如

Which animals do you like:

[x] Cats

    [Fieldset of cat related questions]

[ ] Dogs

    [Fieldset of dog related questions]

...

我可以轻松创建字段集和表单,但将它们嵌套在每个项目下让我有些头痛。

最终我想到了这样的事情:

 $this->add(array(
        'type' => 'Zend\Form\Element\Radio',
        'name' => 'profile_type',
        'options' => array(
            'label' => 'Which animals do you like:',
            'label_attributes' => array('class'=>'radio inline'),
            'value_options' => array(
                '1' =>'cats',

                'fieldsets' => array(
                 array(
                    'name' => 'sender',
                    'elements' => array(
                        array(
                            'name' => 'name',
                            'options' => array(
                                'label' => 'Your name',
                                ),
                            'type'  => 'Text'
                        ),
                        array(
                            'type' => 'Zend\Form\Element\Email',
                            'name' => 'email',
                            'options' => array(
                                'label' => 'Your email address',
                                ),
                        ),
                    ),
                )),
                '2'=>'dogs',

                'fieldsets' => array(
                    array(
                        'name' => 'sender',
                        'elements' => array(
                            array(
                                'name' => 'name',
                                'options' => array(
                                    'label' => 'Your name',
                                ),
                                'type'  => 'Text'
                            ),
                            array(
                                'type' => 'Zend\Form\Element\Email',
                                'name' => 'email',
                                'options' => array(
                                    'label' => 'Your email address',
                                ),
                            ),
                        ),
                    ))
            ),
        ),
        'attributes' => array(
            'value' => '1' //set checked to '1'
        )
    ));
php checkbox radio-button zend-framework2 fieldset
1个回答
-1
投票

好吧,我设法通过一些技巧解决了这个问题,但它确实有效。

TestForm.php(注意元素中的附加属性('parent' 和 'childOf')

class TestForm extends Form
{

public $user_agent;
public $user_ip;


public function __construct($name = null)
{
    // we want to ignore the name passed
    parent::__construct('profile');
    $this->setAttributes(array(
        'method'=>'post',
        'class'=>'form-horizontal',
    ));

    $this->add(array(
        'type' => 'Zend\Form\Element\Radio',
        'name' => 'profile_type',
        'options' => array(
            'label' => 'Which animals do you like:',
            'label_attributes' => array('class'=>'radio inline'),
            'value_options' => array(
                array('label' =>'cats', 'value'=>1, 'parent'=>'cat'),
                array('label'=>'dogs', 'value'=>2, 'parent'=>'dog'),
            ),
        ),
        'attributes' => array(
            'value' => '1' //set checked to '1'
        )
    ));

    $this->add(array(
        'type'  => 'Text',
        'name' => 'name',
        'attributes' => array(
            'childOf' => 'cat',
        ),
        'options' => array(
            'label' => 'Your name',
            ),
    ));

    $this->add(array(
        'type' => 'Zend\Form\Element\Email',
        'name' => 'email',
        'attributes' => array(
            'childOf' => 'dog',
        ),
        'options' => array(
            'label' => 'Your email address',
        ),
    ));
}
}

然后扩展 Zend\Form\View\Helper\FormMultiCheckbox 并覆盖 RenderOptions 方法(注意新的 optionSpec 'parent'),这基本上会在父元素之后创建一个标签,例如 {#cat#}:

protected function renderOptions(MultiCheckboxElement $element, array $options, array $selectedOptions,
                                 array $attributes)
{
    $escapeHtmlHelper = $this->getEscapeHtmlHelper();
    $labelHelper      = $this->getLabelHelper();
    $labelClose       = $labelHelper->closeTag();
    $labelPosition    = $this->getLabelPosition();
    $globalLabelAttributes = $element->getLabelAttributes();
    $closingBracket   = $this->getInlineClosingBracket();

    if (empty($globalLabelAttributes)) {
        $globalLabelAttributes = $this->labelAttributes;
    }

    $combinedMarkup = array();
    $count          = 0;

    foreach ($options as $key => $optionSpec) {
        $count++;
        if ($count > 1 && array_key_exists('id', $attributes)) {
            unset($attributes['id']);
        }

        $value           = '';
        $parent          = '';
        $label           = '';
        $inputAttributes = $attributes;
        $labelAttributes = $globalLabelAttributes;
        $selected        = isset($inputAttributes['selected']) && $inputAttributes['type'] != 'radio' && $inputAttributes['selected'] != false ? true : false;
        $disabled        = isset($inputAttributes['disabled']) && $inputAttributes['disabled'] != false ? true : false;

        if (is_scalar($optionSpec)) {
            $optionSpec = array(
                'label' => $optionSpec,
                'value' => $key
            );
        }

        if (isset($optionSpec['value'])) {
            $value = $optionSpec['value'];
        }
        if (isset($optionSpec['parent'])) {
            $parent = $optionSpec['parent'];
        }
        if (isset($optionSpec['label'])) {
            $label = $optionSpec['label'];
        }
        if (isset($optionSpec['selected'])) {
            $selected = $optionSpec['selected'];
        }
        if (isset($optionSpec['disabled'])) {
            $disabled = $optionSpec['disabled'];
        }
        if (isset($optionSpec['label_attributes'])) {
            $labelAttributes = (isset($labelAttributes))
                ? array_merge($labelAttributes, $optionSpec['label_attributes'])
                : $optionSpec['label_attributes'];
        }
        if (isset($optionSpec['attributes'])) {
            $inputAttributes = array_merge($inputAttributes, $optionSpec['attributes']);
        }

        if (in_array($value, $selectedOptions)) {
            $selected = true;
        }

        $inputAttributes['value']    = $value;
        $inputAttributes['checked']  = $selected;
        $inputAttributes['disabled'] = $disabled;

        $input = sprintf(
            '<input %s%s',
            $this->createAttributesString($inputAttributes),
            $closingBracket
        );

        if (null !== ($translator = $this->getTranslator())) {
            $label = $translator->translate(
                $label, $this->getTranslatorTextDomain()
            );
        }

        $tag = ($parent != '')? "{#*".$parent."*#}": "";

        $label     = $escapeHtmlHelper($label);
        $labelOpen = $labelHelper->openTag($labelAttributes);
        $template  = $labelOpen . '%s%s%s' . $labelClose;
        switch ($labelPosition) {
            case self::LABEL_PREPEND:
                $markup = sprintf($template, $label, $input, $tag);
                break;
            case self::LABEL_APPEND:
            default:
                $markup = sprintf($template, $input, $label, $tag);
                break;
        }
        $combinedMarkup[] = $markup;
    }

    return implode($this->getSeparator(), $combinedMarkup);
}

扩展并重写 Zend\Form\View\Helper\FormRow 渲染方法,除了方法的返回之外,其他都是相同的:

    ..... more code .....
    $child_of = $element->getAttribute('childOf');
    if($child_of != '')
    {
        return array($child_of => sprintf('<div class="control-group%s">%s</div>', $status_type, $markup));
    }
    return sprintf('<div class="control-group%s">%s</div>', $status_type, $markup);

最后扩展并覆盖了 Zend\Form\View\Helper\FormCollection 的 render 方法,并更改了元素 foreach 循环,如果元素是数组,则基本上覆盖标签,因此具有 ChildOf 标签。然后清理标签:

foreach ($element->getIterator() as $elementOrFieldset) {
        if ($elementOrFieldset instanceof FieldsetInterface) {
            $markup .= $fieldsetHelper($elementOrFieldset);
        } elseif ($elementOrFieldset instanceof ElementInterface) {
            $elementString =  $elementHelper($elementOrFieldset);
            if(!is_array($elementString))
            {
                $markup .= $elementString;
            }
            // is child of another element
            else
            {

                foreach($elementString as $key => $value)
                {
                    $match = "{#*".$key."*#}";
                    $replacement = $value.$match;
                    $markup = str_replace($match, $replacement, $markup);
                }
            }
        }
    }
    $pattern = '/[{#\*]+[a-z0-0A-Z]*[\*#}]+/';
    $markup = preg_replace($pattern, '', $markup);

这(虽然丑陋)产生了期望的结果,也是因为我们只是在玩渲染,验证和表单创建没有受到影响。

祝一切顺利, 阿博格罗夫

© www.soinside.com 2019 - 2024. All rights reserved.