blob: f848b5c920b1b9ee1cad271311d344ef30089320 (
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
|
<?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;
/**
* Alert input type class.
* Manage the default attributes required to display an alert
*
* @extends BaseInput
*/
class Alert extends BaseInput {
/**
* {@inheritDoc}
*/
protected function applyTransformations()
{
$this->element = array_merge([
"class" => "alert-danger",
"icon" => "fa-ban",
"value" => $this->value,
"name" => $this->name
], $this->element);
}
}
|