about summary refs log tree commit diff stats
path: root/wiki/inc/Form/CheckableElement.php
blob: 27d5c2ea613827133cdb6134d1e793984f58b31f (plain) (blame)
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
pre { line-height: 125%; }
td.linenos .normal { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }
span.linenos { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }
td.linenos .special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }
span.linenos.special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }
.highlight .hll { background-color: #ffffcc }
.highlight .c { color: #888888 } /* Comment */
.highlight .err { color: #a61717; background-color: #e3d2d2 } /* Error */
.highlight .k { color: #008800; font-weight: bold } /* Keyword */
.highlight .ch { color: #888888 } /* Comment.Hashbang */
.highlight .cm { color: #888888 } /* Comment.Multiline */
.highlight .cp { color: #cc0000; font-weight: bold } /* Comment.Preproc */
.highlight .cpf { color: #888888 } /* Comment.PreprocFile */
.highlight .c1 { color: #888888 } /* Comment.Single */
.highlight .cs { col
<?php
namespace dokuwiki\Form;

/**
 * Class CheckableElement
 *
 * For Radio- and Checkboxes
 *
 * @package dokuwiki\Form
 */
class CheckableElement extends InputElement {

    /**
     * @param string $type The type of this element
     * @param string $name The name of this form element
     * @param string $label The label text for this element
     */
    public function __construct($type, $name, $label) {
        parent::__construct($type, $name, $label);
        // default value is 1
        $this->attr('value', 1);
    }

    /**
     * Handles the useInput flag and sets the checked attribute accordingly
     */
    protected function prefillInput() {
        global $INPUT;
        list($name, $key) = $this->getInputName();
        $myvalue = $this->val();

        if(!$INPUT->has($name)) return;

        if($key === null) {
            // no key - single value
            $value = $INPUT->str($name);
            if($value == $myvalue) {
                $this->attr('checked', 'checked');
            } else {
                $this->rmattr('checked');
            }
        } else {
            // we have an array, there might be several values in it
            $input = $INPUT->arr($name);
            if(isset($input[$key])) {
                $this->rmattr('checked');

                // values seem to be in another sub array
                if(is_array($input[$key])) {
                    $input = $input[$key];
                }

                foreach($input as $value) {
                    if($value == $myvalue) {
                        $this->attr('checked', 'checked');
                    }
                }
            }
        }
    }

}