PHP Classes

File: src/Renderer/Field/SelectRender.php

Recommend this page to a friend!
  Classes of Derek McLean   HTML Forms   src/Renderer/Field/SelectRender.php   Download  
File: src/Renderer/Field/SelectRender.php
Role: Class source
Content type: text/plain
Description: Class source
Class: HTML Forms
Generate and validate submitted HTML forms
Author: By
Last change:
Date: 6 years ago
Size: 1,469 bytes
 

Contents

Class file image Download
<?php
/**
 * User: delboy1978uk
 * Date: 04/12/2016
 * Time: 22:33
 */

namespace Del\Form\Renderer\Field;

use
Del\Form\Field\FieldInterface;
use
Del\Form\Field\Select;
use
DOMElement;
use
DOMText;
use
InvalidArgumentException;

class
SelectRender extends AbstractFieldRender implements FieldRendererInterface
{
   
/**
     * @param FieldInterface $field
     * @param DOMElement $element
     * @return DOMElement
     */
   
public function renderBlock(FieldInterface $field, DOMElement $element)
    {
        if (!
$field instanceof Select) {
            throw new
InvalidArgumentException('Must be a Del\Form\Field\Select');
        }
        foreach (
$field->getOptions() as $value => $label) {
           
$option = $this->processOption($field, $value, $label);
           
$element->appendChild($option);
        }
        return
$element;
    }

   
/**
     * @param FieldInterface $field
     * @param string $value
     * @param string $label
     * @return DOMElement
     */
   
private function processOption(FieldInterface $field, $value, $label)
    {
       
$option = $this->createElement('option');
       
$option->setAttribute('value', $value);
       
$label = $this->createText($label);
       
$option->appendChild($label);
        if (
$field->getValue() == $option->getAttribute('value')) {
           
$option->setAttribute('selected', 'selected');
        }
        return
$option;
    }
}