class FileFormField extends FormField
FileFormField represents a file form field (an HTML file input tag).
Methods
__construct(DOMElement $node) Constructor. | from FormField | |
string | getName() Returns the name of the field. | from FormField |
string|array | getValue() Gets the value of the field. | from FormField |
setValue(string $value) Sets the value of the field. | ||
bool | hasValue() Returns true if the field should be included in the submitted values. | from FormField |
bool | isDisabled() Check if the current field is disabled. | from FormField |
setErrorCode(int $error) Sets the PHP error code associated with the field. | ||
upload(string $value) Sets the value of the field. | ||
setFilePath(string $path) Sets path to the file as string for simulating HTTP request. |
Details
__construct(DOMElement $node)
Constructor.
string getName()
Returns the name of the field.
string|array getValue()
Gets the value of the field.
setValue(string $value)
Sets the value of the field.
bool hasValue()
Returns true if the field should be included in the submitted values.
bool isDisabled()
Check if the current field is disabled.
setErrorCode(int $error)
Sets the PHP error code associated with the field.
upload(string $value)
Sets the value of the field.
setFilePath(string $path)
Sets path to the file as string for simulating HTTP request.
Please login to continue.