1 drupal.inc | drupal_verify_install_file($file, $mask = NULL, $type = 'file') |
Verifies the state of the specified file.
Deprecated
since 1.0.0
See also
backdrop_verify_install_file()
Related topics
File
- core/
includes/ drupal.inc, line 1991 - Contains constants and function wrappers for Drupal 7.x compatibility.
Code
function drupal_verify_install_file($file, $mask = NULL, $type = 'file') {
watchdog_deprecated_function('drupal', __FUNCTION__);
return backdrop_verify_install_file($file, $mask, $type);
}