Search for file

  1. Search 7.x for file
  2. Search 8.9.x for file
  3. Search 10.3.x for file
  4. Search 11.x for file
  5. Other projects

Exact matches

These are exact matches according to your search
Title Object type File name Summary
File class core/modules/media/src/Plugin/media/Source/File.php File entity media source.
File class core/modules/file/src/Entity/File.php Defines the file entity class.
File class core/modules/file/src/Plugin/views/field/File.php Field handler to provide simple renderer that allows linking to a file.
File class core/modules/file/src/Plugin/views/wizard/File.php Tests creating managed files views with the wizard.
File class core/modules/file/src/Plugin/migrate/source/d6/File.php Drupal 6 file source from database.
File class core/modules/file/src/Plugin/migrate/source/d7/File.php Drupal 7 file source from database.
File class core/lib/Drupal/Core/Render/Element/File.php Provides a form element for uploading a file.

All search results

Title Object type File name Summary
FileCache class core/lib/Drupal/Component/FileCache/FileCache.php Allows to cache data based on file modification dates.
FileCache.php file core/lib/Drupal/Component/FileCache/FileCache.php
FileCache::$cache property core/lib/Drupal/Component/FileCache/FileCache.php The cache backend backing this FileCache object.
FileCache::$cached property core/lib/Drupal/Component/FileCache/FileCache.php Static cache that contains already loaded cache entries.
FileCache::$collection property core/lib/Drupal/Component/FileCache/FileCache.php The collection identifier of this cache.
FileCache::$prefix property core/lib/Drupal/Component/FileCache/FileCache.php Prefix that is used for cache entries.
FileCache::delete function core/lib/Drupal/Component/FileCache/FileCache.php Deletes data from the cache.
FileCache::get function core/lib/Drupal/Component/FileCache/FileCache.php Gets data based on a filename.
FileCache::getMultiple function core/lib/Drupal/Component/FileCache/FileCache.php Gets data based on filenames.
FileCache::reset function core/lib/Drupal/Component/FileCache/FileCache.php Resets the static cache.
FileCache::set function core/lib/Drupal/Component/FileCache/FileCache.php Stores data based on a filename.
FileCache::__construct function core/lib/Drupal/Component/FileCache/FileCache.php Constructs a FileCache object.
FileCacheBackendInterface interface core/lib/Drupal/Component/FileCache/FileCacheBackendInterface.php Defines an interface inspired by APCu for FileCache backends.
FileCacheBackendInterface.php file core/lib/Drupal/Component/FileCache/FileCacheBackendInterface.php
FileCacheBackendInterface::delete function core/lib/Drupal/Component/FileCache/FileCacheBackendInterface.php Deletes data from a cache backend.
FileCacheBackendInterface::fetch function core/lib/Drupal/Component/FileCache/FileCacheBackendInterface.php Fetches data from the cache backend.
FileCacheBackendInterface::store function core/lib/Drupal/Component/FileCache/FileCacheBackendInterface.php Stores data into a cache backend.
FileCacheFactory class core/lib/Drupal/Component/FileCache/FileCacheFactory.php Creates a FileCache object.
FileCacheFactory.php file core/lib/Drupal/Component/FileCache/FileCacheFactory.php
FileCacheFactory::$configuration property core/lib/Drupal/Component/FileCache/FileCacheFactory.php The configuration used to create FileCache objects.
FileCacheFactory::$prefix property core/lib/Drupal/Component/FileCache/FileCacheFactory.php The cache prefix.
FileCacheFactory::DISABLE_CACHE constant core/lib/Drupal/Component/FileCache/FileCacheFactory.php The configuration key to disable FileCache completely.
FileCacheFactory::get function core/lib/Drupal/Component/FileCache/FileCacheFactory.php Instantiates a FileCache object for a given collection identifier.
FileCacheFactory::getConfiguration function core/lib/Drupal/Component/FileCache/FileCacheFactory.php Gets the configuration used for constructing future file cache objects.
FileCacheFactory::getPrefix function core/lib/Drupal/Component/FileCache/FileCacheFactory.php Returns the cache prefix.
FileCacheFactory::setConfiguration function core/lib/Drupal/Component/FileCache/FileCacheFactory.php Sets the configuration to use for constructing future file cache objects.
FileCacheFactory::setPrefix function core/lib/Drupal/Component/FileCache/FileCacheFactory.php Sets the cache prefix that should be used.
FileCacheFactoryTest class core/tests/Drupal/Tests/Component/FileCache/FileCacheFactoryTest.php @coversDefaultClass \Drupal\Component\FileCache\FileCacheFactory
@group FileCache
FileCacheFactoryTest.php file core/tests/Drupal/Tests/Component/FileCache/FileCacheFactoryTest.php
FileCacheFactoryTest::configurationDataProvider function core/tests/Drupal/Tests/Component/FileCache/FileCacheFactoryTest.php Data provider for testGetConfigurationOverrides().
FileCacheFactoryTest::setUp function core/tests/Drupal/Tests/Component/FileCache/FileCacheFactoryTest.php
FileCacheFactoryTest::testGet function core/tests/Drupal/Tests/Component/FileCache/FileCacheFactoryTest.php @covers ::get
FileCacheFactoryTest::testGetConfigurationOverrides function core/tests/Drupal/Tests/Component/FileCache/FileCacheFactoryTest.php @covers ::get
FileCacheFactoryTest::testGetDisabledFileCache function core/tests/Drupal/Tests/Component/FileCache/FileCacheFactoryTest.php @covers ::get
FileCacheFactoryTest::testGetNoPrefix function core/tests/Drupal/Tests/Component/FileCache/FileCacheFactoryTest.php @covers ::get
FileCacheFactoryTest::testGetSetConfiguration function core/tests/Drupal/Tests/Component/FileCache/FileCacheFactoryTest.php @covers ::getConfiguration
@covers ::setConfiguration
FileCacheFactoryTest::testGetSetPrefix function core/tests/Drupal/Tests/Component/FileCache/FileCacheFactoryTest.php @covers ::getPrefix
@covers ::setPrefix
FileCacheInterface interface core/lib/Drupal/Component/FileCache/FileCacheInterface.php Interface for objects that allow caching file data.
FileCacheInterface.php file core/lib/Drupal/Component/FileCache/FileCacheInterface.php
FileCacheInterface::delete function core/lib/Drupal/Component/FileCache/FileCacheInterface.php Deletes data from the cache.
FileCacheInterface::get function core/lib/Drupal/Component/FileCache/FileCacheInterface.php Gets data based on a filename.
FileCacheInterface::getMultiple function core/lib/Drupal/Component/FileCache/FileCacheInterface.php Gets data based on filenames.
FileCacheInterface::set function core/lib/Drupal/Component/FileCache/FileCacheInterface.php Stores data based on a filename.
FileCacheTest class core/tests/Drupal/Tests/Component/FileCache/FileCacheTest.php @coversDefaultClass \Drupal\Component\FileCache\FileCache
@group FileCache
FileCacheTest.php file core/tests/Drupal/Tests/Component/FileCache/FileCacheTest.php
FileCacheTest::$fileCache property core/tests/Drupal/Tests/Component/FileCache/FileCacheTest.php FileCache object used for the tests.
FileCacheTest::$staticFileCache property core/tests/Drupal/Tests/Component/FileCache/FileCacheTest.php Static FileCache object used for verification of tests.
FileCacheTest::setUp function core/tests/Drupal/Tests/Component/FileCache/FileCacheTest.php
FileCacheTest::testDelete function core/tests/Drupal/Tests/Component/FileCache/FileCacheTest.php @covers ::delete
FileCacheTest::testGet function core/tests/Drupal/Tests/Component/FileCache/FileCacheTest.php @covers ::get
@covers ::__construct

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.