protected function FileProfilerStorage::getIndexFilename

Gets the index filename.

Return value

string The index filename

2 calls to FileProfilerStorage::getIndexFilename()
FileProfilerStorage::find in drupal/core/vendor/symfony/http-kernel/Symfony/Component/HttpKernel/Profiler/FileProfilerStorage.php
Finds profiler tokens for the given criteria.
FileProfilerStorage::write in drupal/core/vendor/symfony/http-kernel/Symfony/Component/HttpKernel/Profiler/FileProfilerStorage.php
Saves a Profile.

File

drupal/core/vendor/symfony/http-kernel/Symfony/Component/HttpKernel/Profiler/FileProfilerStorage.php, line 196

Class

FileProfilerStorage
Storage for profiler using files.

Namespace

Symfony\Component\HttpKernel\Profiler

Code

protected function getIndexFilename() {
  return $this->folder . '/index.csv';
}