You are here

private function XHProfRunsFile::file_name in XHProf 6

Same name and namespace in other branches
  1. 7 XHProfRunsFile.inc \XHProfRunsFile::file_name()
2 calls to XHProfRunsFile::file_name()
XHProfRunsFile::get_run in ./XHProfRunsFile.inc
XHProfRunsFile::save_run in ./XHProfRunsFile.inc

File

./XHProfRunsFile.inc, line 25
Definition of XHProfRunsFile.

Class

XHProfRunsFile
XHProfRuns_Default is the default implementation of the iXHProfRuns interface for saving/fetching XHProf runs.

Code

private function file_name($run_id, $type) {
  $file = "{$run_id}.{$type}." . $this->suffix;
  if (!empty($this->dir)) {
    $file = $this->dir . "/" . $file;
  }
  return $file;
}