acf/validate_attachment/key={$field[key]}
acf/validate_attachment/key={$field[key]}
Appears in: advanced-custom-fields.6.0.2
Hook Type: filter
Displaying hooks found in version: advanced-custom-fields.6.0.2apply_filters('acf/validate_attachment/key={$field[key]}') is found 1 times:
- /includes/api/api-helpers.php line 342834243425342634273428342934303431343234333434
* @param string
$context
The curent context (uploading, preparing)
*/
$errors
= apply_filters(
"acf/validate_attachment/type={$field['type']}"
,
$errors
,
$file
,
$attachment
,
$field
,
$context
);
$errors
= apply_filters(
"acf/validate_attachment/name={$field['_name']}"
,
$errors
,
$file
,
$attachment
,
$field
,
$context
);
$errors
= apply_filters(
"acf/validate_attachment/key={$field['key']}"
,
$errors
,
$file
,
$attachment
,
$field
,
$context
);
$errors
= apply_filters(
'acf/validate_attachment'
,
$errors
,
$file
,
$attachment
,
$field
,
$context
);
// return
return
$errors
;
}