aboutsummaryrefslogtreecommitdiffhomepage
path: root/main/app/sprinkles/FormGenerator/src/Element/Textarea.php
blob: bec3a6cfcc717da1f8ca6a49aa5515d060d2151c (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
31
32
33
34
35
36
37
38
<?php
/**
 * UF Form Generator
 *
 * @link      https://github.com/lcharette/UF_FormGenerator
 * @copyright Copyright (c) 2017 Louis Charette
 * @license   https://github.com/lcharette/UF_FormGenerator/blob/master/LICENSE (MIT License)
 */
namespace UserFrosting\Sprinkle\FormGenerator\Element;

use UserFrosting\Sprinkle\FormGenerator\Element\BaseInput;

/**
 * Textarea input type class.
 * Manage the default attributes required to display a textarea input
 *
 * @extends BaseInput
 */
class Textarea extends BaseInput {

    /**
     * {@inheritDoc}
     */
    protected function applyTransformations()
    {
        $this->element = array_merge([
            "autocomplete" => "off",
            "class" => "form-control",
            "value" => $this->getValue(),
            "name" => $this->name,
            "rows" => 3,
            "id" => "field_" . $this->name
        ], $this->element);

        // Translate placeholder
        $this->translateArgValue('placeholder');
    }
}