private function RedisProfilerStorage::getIndexName

Gets the name of the index.

Return value

string

3 calls to RedisProfilerStorage::getIndexName()
RedisProfilerStorage::find in drupal/core/vendor/symfony/http-kernel/Symfony/Component/HttpKernel/Profiler/RedisProfilerStorage.php
Finds profiler tokens for the given criteria.
RedisProfilerStorage::purge in drupal/core/vendor/symfony/http-kernel/Symfony/Component/HttpKernel/Profiler/RedisProfilerStorage.php
Purges all data from the database.
RedisProfilerStorage::write in drupal/core/vendor/symfony/http-kernel/Symfony/Component/HttpKernel/Profiler/RedisProfilerStorage.php
Saves a Profile.

File

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

Class

RedisProfilerStorage
RedisProfilerStorage stores profiling information in Redis.

Namespace

Symfony\Component\HttpKernel\Profiler

Code

private function getIndexName() {
  $name = 'index';
  if ($this
    ->isItemNameValid($name)) {
    return $name;
  }
  return false;
}