ConfigManager::findMissingContentDependencies

public ConfigManager::findMissingContentDependencies() Finds missing content dependencies declared in configuration entities. Return value array A list of missing content dependencies. The array is keyed by UUID. Each value is an array with the following keys: 'entity_type', 'bundle' and 'uuid'. Overrides ConfigManagerInterface::findMissingContentDependencies File core/lib/Drupal/Core/Config/ConfigManager.php, line 459 Class ConfigManager The ConfigManager provides helper functions for th

FileCacheFactory::setConfiguration

public static FileCacheFactory::setConfiguration($configuration) Sets the configuration to use for constructing future file cache objects. Parameters array $configuration: The configuration to use. File core/lib/Drupal/Component/FileCache/FileCacheFactory.php, line 92 Class FileCacheFactory Creates a FileCache object. Namespace Drupal\Component\FileCache Code public static function setConfiguration($configuration) { static::$configuration = $configuration; }

StringDatabaseStorage::findTranslation

public StringDatabaseStorage::findTranslation(array $conditions) Loads a string translation object, fast query. This function must only be used when actually translating strings as it will have the effect of updating the string version. For other purposes the getTranslations() method should be used instead. Parameters array $conditions: (optional) Array with conditions that will be used to filter the strings returned and may include all of the conditions defined by getStrings(). Return value

FileInterface

Defines getter and setter methods for file entity base fields. Hierarchy interface \Drupal\Core\Entity\ContentEntityInterface extends \Traversable; interface \Drupal\Core\Entity\EntityChangedInterface; interface \Drupal\user\EntityOwnerInterfaceinterface \Drupal\file\FileInterface Related topics File interface Common file handling functions. File core/modules/file/src/FileInterface.php, line 14 Namespace Drupal\file Members Name Modifiers Type Description AccessibleInterfac

KeyValueDatabaseFactory::$connection

The database connection to use. Type: \Drupal\Core\Database\Connection File core/lib/Drupal/Core/KeyValueStore/KeyValueDatabaseFactory.php, line 25 Class KeyValueDatabaseFactory Defines the key/value store factory for the database backend. Namespace Drupal\Core\KeyValueStore Code protected $connection;

ShortcutSetDeleteForm::buildForm

public ShortcutSetDeleteForm::buildForm(array $form, FormStateInterface $form_state) Form constructor. Parameters array $form: An associative array containing the structure of the form. \Drupal\Core\Form\FormStateInterface $form_state: The current state of the form. Return value array The form structure. Overrides EntityDeleteForm::buildForm File core/modules/shortcut/src/Form/ShortcutSetDeleteForm.php, line 51 Class ShortcutSetDeleteForm Builds the shortcut set deletion form. Namespac

TypedDataInterface::getDataDefinition

public TypedDataInterface::getDataDefinition() Gets the data definition. Return value \Drupal\Core\TypedData\DataDefinitionInterface The data definition object. File core/lib/Drupal/Core/TypedData/TypedDataInterface.php, line 40 Class TypedDataInterface Interface for typed data objects. Namespace Drupal\Core\TypedData Code public function getDataDefinition();

FormState::$method

The HTTP form method to use for finding the input for this form. May be 'POST' or 'GET'. Defaults to 'POST'. Note that 'GET' method forms do not use form ids so are always considered to be submitted, which can have unexpected effects. The 'GET' method should only be used on forms that do not change data, as that is exclusively the domain of 'POST.' This property is uncacheable. Type: string File core/lib/Drupal/Core/Form/FormState.php, line 163 Class FormState Stores information about the

DefaultRequestPolicy::__construct

public DefaultRequestPolicy::__construct() Constructs the default Dynamic Page Cache request policy. File core/modules/dynamic_page_cache/src/PageCache/RequestPolicy/DefaultRequestPolicy.php, line 20 Class DefaultRequestPolicy The default Dynamic Page Cache request policy. Namespace Drupal\dynamic_page_cache\PageCache\RequestPolicy Code public function __construct() { $this->addPolicy(new CommandLineOrUnsafeMethod()); }

ViewExecutable::$preview

If this view has been previewed. Type: bool File core/modules/views/src/ViewExecutable.php, line 350 Class ViewExecutable Represents a view as a whole. Namespace Drupal\views Code public $preview;