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