1 | <?php |
||
22 | class Fields implements FieldsInterface |
||
|
|||
23 | { |
||
24 | /** |
||
25 | * The template name. |
||
26 | * |
||
27 | * @var string |
||
28 | */ |
||
29 | protected $name; |
||
30 | |||
31 | /** |
||
32 | * @var array |
||
33 | */ |
||
34 | private $components; |
||
35 | |||
36 | /** |
||
37 | * @var FieldConnector|null |
||
38 | */ |
||
39 | private $connector; |
||
40 | |||
41 | /** |
||
42 | * Constructor. |
||
43 | */ |
||
44 | public function __construct( |
||
67 | |||
68 | /** |
||
69 | * {@inheritdoc} |
||
70 | */ |
||
71 | public function fields() |
||
83 | |||
84 | /** |
||
85 | * {@inheritdoc} |
||
86 | */ |
||
87 | public function components() |
||
91 | |||
92 | /** |
||
93 | * {@inheritdoc} |
||
94 | */ |
||
95 | public function connector() |
||
103 | |||
104 | /** |
||
105 | * {@inheritdoc} |
||
106 | */ |
||
107 | public function addScreenAttributes() |
||
110 | |||
111 | /** |
||
112 | * {@inheritdoc} |
||
113 | */ |
||
114 | public function removeScreenAttributes() |
||
117 | } |
||
118 |
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.