You are here

public function FrxFile::path in Forena Reports 7.3

Same name and namespace in other branches
  1. 7.4 FrxFile.inc \FrxFile::path()

Return the full path to the filename

Parameters

$filename:

1 call to FrxFile::path()
FrxFile::contents in ./FrxFile.inc
Return the contents of a file located in the report directory

File

./FrxFile.inc, line 26
FrxFile.inc File toolbox for manipulating files contained tn the report directory.

Class

FrxFile
@file FrxFile.inc File toolbox for manipulating files contained tn the report directory.

Code

public function path($filename) {
  return $this->dir . '/' . $filename;
}