public static function FileCacheFactory::getPrefix in Zircon Profile 8.0
Same name and namespace in other branches
- 8 core/lib/Drupal/Component/FileCache/FileCacheFactory.php \Drupal\Component\FileCache\FileCacheFactory::getPrefix()
Returns the cache prefix.
Return value
string The cache prefix.
3 calls to FileCacheFactory::getPrefix()
- FileCacheFactory::get in core/
lib/ Drupal/ Component/ FileCache/ FileCacheFactory.php - Instantiates a FileCache object for a given collection identifier.
- FileCacheFactoryTest::testGetSetPrefix in core/
tests/ Drupal/ Tests/ Component/ FileCache/ FileCacheFactoryTest.php - @covers ::getPrefix @covers ::setPrefix
- KernelTestBaseTest::testSetUp in core/
tests/ Drupal/ KernelTests/ KernelTestBaseTest.php - @covers ::setUp
File
- core/
lib/ Drupal/ Component/ FileCache/ FileCacheFactory.php, line 90 - Contains \Drupal\Component\FileCache\FileCacheFactory.
Class
- FileCacheFactory
- Creates a FileCache object.
Namespace
Drupal\Component\FileCacheCode
public static function getPrefix() {
return static::$prefix;
}