blob: d89200181a5b892d818a4a34623cdd2f40b44aee (
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
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
|
<?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\InputInterface;
use UserFrosting\Sprinkle\Core\Facades\Translator;
use UserFrosting\Sprinkle\Core\Facades\Debug;
/**
* BaseInput class.
*
* Parse the schema data for a form input element to add the default
* attributes values and transform other attributes.
* @abstract
* @implements InputInterface
*/
abstract class BaseInput implements InputInterface {
/**
* @var String The name of the input.
*/
var $name;
/**
* @var object The input schema data.
*/
var $element;
/**
* @var String The input value.
*/
var $value;
/**
* Constructor.
*
* @access public
* @param String $name
* @param object $element
* @param mixed $value (default: null)
* @return void
*/
public function __construct($name, $element, $value = null)
{
$this->name = $name;
$this->element = $element;
$this->value = $value;
}
/**
* parse function.
*
* Return the parsed input attributes
* @access public
* @return void
*/
public function parse()
{
$this->applyTransformations();
return $this->element;
}
/**
* translateArgValue function.
*
* Translate the value of passed argument using the Translator Facade
* @access public
* @param String $argument
* @return void
*/
public function translateArgValue($argument) {
if (isset($this->element[$argument])) {
$this->element[$argument] = Translator::translate($this->element[$argument]);
}
}
/**
* getValue function.
*
* Return the value of the current input element. If not value is set in
* `$this->value`, return the default value (from the schema data), if any.
* @access public
* @return string The input current value
*/
public function getValue() {
if (isset($this->value) && $this->value !== null) {
return $this->value;
} else if (isset($this->element['default'])) {
return $this->element['default'];
} else {
return "";
}
}
/**
* applyTransformations function.
*
* Add defaut attributes to the current input element. Also transform
* attributes values passed from the schema
* @access protected
* @abstract
* @return void
*/
abstract protected function applyTransformations();
}
|