function hackedFileGroup::file_exists in Hacked! 8.2
Determine if a file exists.
File
- src/
hackedFileGroup.php, line 84
Class
- hackedFileGroup
- Represents a group of files on the local filesystem.
Namespace
Drupal\hackedCode
function file_exists($file) {
return file_exists($this->base_path . '/' . $file);
}