public function FileBase::isWritable in Forena Reports 7.5
Same name and namespace in other branches
- 8 src/File/FileBaseOld.php \Drupal\forena\File\FileBase::isWritable()
Return an indicator as to whether the file is savable. New files can be saved if the directory is writabel.
Parameters
unknown $filename:
Return value
boolean
File
- src/
File/ FileBase.php, line 395 - FileBase.inc File toolbox for manipulating files contained tn the report directory.
Class
Namespace
Drupal\forena\FileCode
public function isWritable($filename) {
return is_writeable($this->dir . "/{$filename}") || !file_exists($this->dir . "/{$filename}");
}