private function BaseMemcacheProfilerStorage::getIndexName

Get name of index

Return value

string

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

File

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

Class

BaseMemcacheProfilerStorage
Base Memcache storage for profiling information in a Memcache.

Namespace

Symfony\Component\HttpKernel\Profiler

Code

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