You are here

public static function FileCacheFactory::setPrefix in Plug 7

Sets the cache prefix that should be used.

Should be set to a secure, unique key to prevent cache pollution by a third party.

Parameters

string $prefix: The cache prefix.

1 call to FileCacheFactory::setPrefix()
DefaultPluginManager::__construct in lib/Drupal/Core/Plugin/DefaultPluginManager.php
Creates the discovery object.

File

lib/Drupal/Component/FileCache/FileCacheFactory.php, line 103
Contains \Drupal\Component\FileCache\FileCacheFactory.

Class

FileCacheFactory
Creates a FileCache object.

Namespace

Drupal\Component\FileCache

Code

public static function setPrefix($prefix) {
  static::$prefix = $prefix;
}