This file is indexed.

/usr/share/php/Horde/View/Helper/FormTag.php is in php-horde-view 2.0.3-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  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
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
<?php
/**
 * Copyright 2007-2008 Maintainable Software, LLC
 * Copyright 2008-2013 Horde LLC (http://www.horde.org/)
 *
 * @author     Mike Naberezny <mike@maintainable.com>
 * @author     Derek DeVries <derek@maintainable.com>
 * @author     Chuck Hagenbuch <chuck@horde.org>
 * @license    http://www.horde.org/licenses/bsd
 * @category   Horde
 * @package    View
 * @subpackage Helper
 */

/**
 * @author     Mike Naberezny <mike@maintainable.com>
 * @author     Derek DeVries <derek@maintainable.com>
 * @author     Chuck Hagenbuch <chuck@horde.org>
 * @license    http://www.horde.org/licenses/bsd
 * @category   Horde
 * @package    View
 * @subpackage Helper
 */
class Horde_View_Helper_FormTag extends Horde_View_Helper_Base
{
    public function formTag($urlForOptions = array(), $options = array()) // , *parameters_for_url
    {
        $htmlOptions = $this->htmlOptionsForForm($urlForOptions, $options );  // , *parameters_for_url
        return $this->formTagHtml($htmlOptions);
    }

    public function endFormTag()
    {
        return '</form>';
    }

    public function selectTag($name, $optionTags = null, $options = array())
    {
        return $this->contentTag('select', $optionTags,
                                 array_merge(array('name' => $name, 'id' => $name), $options));
    }

    public function optionTag($value = null, $label = null, $selected = false, $options = array())
    {
        return $this->contentTag('option', $label, array_merge(array(
            'selected' => $selected,
            'value' => $value
        ), $options));
    }

    public function textFieldTag($name, $value = null, $options = array())
    {
        return $this->tag('input', array_merge(array('type'  => 'text',
                                                     'name'  => $name,
                                                     'id'    => $name,
                                                     'value' => $value),
                                               $options));
    }

    public function hiddenFieldTag($name, $value = null, $options = array())
    {
        return $this->textFieldTag($name, $value, array_merge($options, array('type' => 'hidden')));
    }

    public function fileFieldTag($name, $options = array())
    {
        return $this->textFieldTag($name, null, array_merge($options, array('type' => 'file')));
    }

    public function passwordFieldTag($name = 'password', $value = null, $options = array())
    {
        return $this->textFieldTag($name, $value, array_merge($options, array('type' => 'password')));
    }

    public function textAreaTag($name, $content = null, $options = array())
    {
        if (isset($options['size'])) {
            $size = $options['size'];
            unset($options['size']);
            if (strpos($size, 'x') !== false) {
                list($options['cols'], $options['rows']) = explode('x', $size);
            }
        }

        return $this->contentTag('textarea', $content,
                                 array_merge(array('name' => $name, 'id' => $name), $options));
    }

    public function checkBoxTag($name, $value = '1', $checked = false, $options = array())
    {
        $htmlOptions = array_merge(array('type'  => 'checkbox',
                                         'name'  => $name,
                                         'id'    => $name,
                                         'value' => $value,
                                         'checked' => $checked), $options);

        return $this->tag('input', $htmlOptions);
    }

    public function radioButtonTag($name, $value, $checked = false, $options = array())
    {
        $prettyTagValue = preg_replace('/\s/', '_', $value);
        $prettyTagValue = strtolower(preg_replace('/(?!-)\W/', '', $prettyTagValue));

        $htmlOptions = array_merge(array('type'  => 'radio',
                                         'name'  => $name,
                                         'id'    => "{$name}_{$prettyTagValue}",
                                         'value' => $value,
                                         'checked' => $checked), $options);

        return $this->tag('input', $htmlOptions);
    }

    public function submitTag($value = 'Save changes', $options = array())
    {
        if (isset($options['disableWith'])) {
            $disableWith = $options['disableWith'];
            unset($options['disableWith']);

            $options['onclick'] = implode(';', array(
                "this.setAttribute('originalValue', this.value)",
                "this.disabled=true",
                "this.value='$disableWith'",
                "{$options['onclick']}",
                "result = (this.form.onsubmit ? (this.form.onsubmit() ? this.form.submit() : false) : this.form.submit())",
                "if (result == false) { this.value = this.getAttribute('originalValue'); this.disabled = false }",
                "return result"
            ));
        }

        return $this->tag('input', array_merge(array('type' => 'submit', 'name' => 'commit', 'value' => $value),
                                               $options));
    }

    public function imageSubmitTag($source, $options = array())
    {
        // source is passed to Horde_View_Helper_Asset->imagePath
        return $this->tag('input', array_merge(array('type' => 'image',
                                                     'src'  => $this->imagePath($source)),
                                               $options));
    }

    private function extraTagsForForm($htmlOptions)
    {
        $method = isset($htmlOptions['method']) ? strtolower($htmlOptions['method']) : '';
        if ($method == 'get') {
            $htmlOptions['method'] = 'get';
            return array('', $htmlOptions);
        } else if ($method == 'post' || $method == '') {
            $htmlOptions['method'] = 'post';
            return array('', $htmlOptions);
        } else {
            $htmlOptions['method'] = 'post';
            $extraTags = $this->contentTag('div',
                             $this->tag('input', array('type'  => 'hidden', 'name'  => '_method',
                                                       'value' => $method)), array('style' => 'margin:0;padding:0'));
            return array($extraTags, $htmlOptions);
        }

    }

    private function formTagHtml($htmlOptions)
    {
        list($extraTags, $htmlOptions) = $this->extraTagsForForm($htmlOptions);
        return substr($this->contentTag('form', '', $htmlOptions), 0, -7)
            . $extraTags;
    }

    /** @todo url_for */
    private function htmlOptionsForForm($urlForOptions, $options)
    {
        if (isset($options['multipart'])) {
            unset($options['multipart']);
            $options['enctype'] = 'multipart/form-data';
        }

        $options['action'] = $this->urlFor($urlForOptions); // , *parameters_for_url
        // @todo :
        // html_options["action"]  = url_for(url_for_options, *parameters_for_url)

        return $options;
    }

}