summaryrefslogtreecommitdiffstats
path: root/vendor/ipl/html/src/FormElement/SelectOption.php
blob: d0dbf7c859359512f3b9f4832a38b5241a71fb4e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<?php

namespace ipl\Html\FormElement;

use ipl\Html\BaseHtmlElement;

class SelectOption extends BaseHtmlElement
{
    protected $tag = 'option';

    /** @var mixed */
    protected $value;

    /**
     * SelectOption constructor.
     * @param string|null $value
     * @param string|null $label
     */
    public function __construct($value = null, $label = null)
    {
        $this->value = $value;
        $this->add($label);

        $this->getAttributes()->registerAttributeCallback('value', [$this, 'getValue']);
    }

    /**
     * @param $label
     * @return $this
     */
    public function setLabel($label)
    {
        $this->setContent($label);

        return $this;
    }

    /**
     * @return string
     */
    public function getValue()
    {
        return $this->value;
    }
}