function _file_generic_settings_max_filesize
Element validate callback for the maximum upload size field.
Ensure a size that can be parsed by parse_size() has been entered.
1 string reference to '_file_generic_settings_max_filesize'
- file_field_instance_settings_form in modules/
file/ file.field.inc - Implements hook_field_instance_settings_form().
File
-
modules/
file/ file.field.inc, line 128
Code
function _file_generic_settings_max_filesize($element, &$form_state) {
if (!empty($element['#value']) && !is_numeric(parse_size($element['#value']))) {
form_error($element, t('The "!name" option must contain a valid value. You may either leave the text field empty or enter a string like "512" (bytes), "80 KB" (kilobytes) or "50 MB" (megabytes).', array(
'!name' => t($element['title']),
)));
}
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.