<?php
declare(strict_types=1);
/**
* @class formOption
* @brief HTML Forms option creation helpers
*
* @package Clearbricks
* @subpackage html.form
*
* @since 1.2 First time this was introduced.
*
* @copyright Olivier Meunier & Association Dotclear
* @copyright GPL-2.0-only
*/
class formOption extends formComponent
{
private const DEFAULT_ELEMENT = 'option';
/**
* Constructs a new instance.
*
* @param string $name The option name
* @param string $value The option value
* @param null|string $element The element
*/
public function __construct(string $name, string $value, ?string $element = null)
{
parent::__construct(__CLASS__, $element ?? self::DEFAULT_ELEMENT);
$this
->text($name)
->value($value);
}
/**
* Renders the HTML component.
*
* @param null|string $default The default value
*
* @return string
*/
public function render(?string $default = null): string
{
$buffer = '<' . ($this->getElement() ?? self::DEFAULT_ELEMENT) .
($this->value === $default ? ' selected' : '') .
$this->renderCommonAttributes() . '>';
if ($this->text) {
$buffer .= $this->text;
}
$buffer .= '</' . ($this->getElement() ?? self::DEFAULT_ELEMENT) . '>' . "\n";
return $buffer;
}
/**
* Gets the default element.
*
* @return string The default element.
*/
public function getDefaultElement(): string
{
return self::DEFAULT_ELEMENT;
}
}