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