You are here

public function FileSystemBase::pathinfo in Forena Reports 8

Retrieve path info

Parameters

string $filename filename used for data:

bool $use_include boolean value determining whether to search: include path.

Return value

mixed

File

src/File/FileSystemBase.php, line 359
FileSystemBase.inc File toolbox for manipulating files contained tn the report directory.

Class

FileSystemBase

Namespace

Drupal\forena\File

Code

public function pathinfo($filename, $use_include = TRUE) {
  return pathinfo($this
    ->path($filename, $use_include));
}