The class Joomla\Form\Field has been deprecated with message: The joomla/form package is deprecated
This class, trait or interface has been deprecated. The supplier of the file has supplied an explanatory message.
The explanatory message should give you some clue as to whether and when the type will be
removed from the class and what other constant to use instead.
Loading history...
15
{
16
/**
17
* Test...
18
*
19
* @param string $name Element name
20
*
21
* @return mixed
22
*
23
* @since 1.0
24
*/
25
public function __get($name)
26
{
27
if ($name == 'element')
28
{
29
return $this->element;
30
}
31
else
32
{
33
return parent::__get($name);
34
}
35
}
36
37
/**
38
* Test...
39
*
40
* @return void
41
*
42
* @since 1.0
43
*/
44
public function getInput()
45
{
46
return null;
47
}
48
49
/**
50
* Test...
51
*
52
* @return \Joomla\Form\Form
53
*
54
* @since 1.0
55
*/
56
public function getForm()
57
{
58
return $this->form;
59
}
60
61
/**
62
* Test...
63
*
64
* @param string $fieldId The field element id.
65
* @param string $fieldName The field element name.
66
*
67
* @return string The id to be used for the field input tag.
This class, trait or interface has been deprecated. The supplier of the file has supplied an explanatory message.
The explanatory message should give you some clue as to whether and when the type will be removed from the class and what other constant to use instead.