1 | <?php |
||
19 | class Field_File extends Field |
||
|
|||
20 | { |
||
21 | /** |
||
22 | * The form field type. |
||
23 | * |
||
24 | * @var string |
||
25 | * @since 1.0 |
||
26 | */ |
||
27 | public $type = 'File'; |
||
28 | |||
29 | /** |
||
30 | * Method to get the field input markup for the file field. |
||
31 | * Field attributes allow specification of a maximum file size and a string |
||
32 | * of accepted file extensions. |
||
33 | * |
||
34 | * @return string The field input markup. |
||
35 | * |
||
36 | * @since 1.0 |
||
37 | * |
||
38 | * @note The field does not include an upload mechanism. |
||
39 | * @see JFormFieldMedia |
||
40 | */ |
||
41 | protected function getInput() |
||
55 | } |
||
56 |
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.