function hackedFileGroup::is_readable in Hacked! 7.2
Same name and namespace in other branches
- 6.2 includes/hacked_project.inc \hackedFileGroup::is_readable()
Determine if the given file is readable.
File
- includes/
hackedFileGroup.inc, line 72
Class
- hackedFileGroup
- Represents a group of files on the local filesystem.
Code
function is_readable($file) {
return is_readable($this->base_path . '/' . $file);
}