PhpStorageFactory::get

static PhpStorageFactory::get($name) Instantiates a storage for generated PHP code. By default, this returns an instance of the \Drupal\Component\PhpStorage\MTimeProtectedFileStorage class. Classes implementing \Drupal\Component\PhpStorage\PhpStorageInterface can be registered for a specific bin or as a default implementation. Parameters string $name: The name for which the storage should be returned. Defaults to 'default' The name is also used as the storage bin if one is not specified in the

FormState::isExecuted

public FormState::isExecuted() Determines if the form was submitted and has been processed and executed. Return value bool TRUE if the form was submitted and has been processed and executed. Overrides FormStateInterface::isExecuted File core/lib/Drupal/Core/Form/FormState.php, line 537 Class FormState Stores information about the state of a form. Namespace Drupal\Core\Form Code public function isExecuted() { return $this->executed; }

UnmetDependenciesException::getTranslatedMessage

public UnmetDependenciesException::getTranslatedMessage(TranslationInterface $string_translation, $extension) Gets a translated message from the exception. Parameters \Drupal\Core\StringTranslation\TranslationInterface $string_translation: The string translation service. Return value string File core/lib/Drupal/Core/Config/UnmetDependenciesException.php, line 55 Class UnmetDependenciesException An exception thrown if configuration has unmet dependencies. Namespace Drupal\Core\Config

Condition::notExists

public Condition::notExists($field, $langcode = NULL) Queries for the existence of a field. Parameters string $field: Return value ConditionInterface; Overrides ConditionInterface::notExists See also \Drupal\Core\Entity\Query\QueryInterface::notexists() File core/lib/Drupal/Core/Config/Entity/Query/Condition.php, line 93 Class Condition Defines the condition class for the config entity query. Namespace Drupal\Core\Config\Entity\Query Code public function notExists($field, $langcode

ConfigMapperInterface::getEditRouteParameters

public ConfigMapperInterface::getEditRouteParameters() Returns the route parameters for the translation edit form route. Return value array File core/modules/config_translation/src/ConfigMapperInterface.php, line 128 Class ConfigMapperInterface Defines an interface for configuration mapper. Namespace Drupal\config_translation Code public function getEditRouteParameters();

RemoveCommand::__construct

public RemoveCommand::__construct($selector) Constructs a RemoveCommand object. Parameters string $selector: File core/lib/Drupal/Core/Ajax/RemoveCommand.php, line 33 Class RemoveCommand AJAX command for calling the jQuery remove() method. Namespace Drupal\Core\Ajax Code public function __construct($selector) { $this->selector = $selector; }

CommentStorageInterface

Defines an interface for comment entity storage classes. Hierarchy interface \Drupal\Core\Entity\EntityStorageInterfaceinterface \Drupal\Core\Entity\ContentEntityStorageInterfaceinterface \Drupal\comment\CommentStorageInterface File core/modules/comment/src/CommentStorageInterface.php, line 12 Namespace Drupal\comment Members Name Modifiers Type Description CommentStorageInterface::getChildCids public function Gets the comment ids of the passed comment entities' childr

Settings::getApcuPrefix

public static Settings::getApcuPrefix($identifier, $root, $site_path = '') Generates a prefix for APCu user cache keys. A standardized prefix is useful to allow visual inspection of an APCu user cache. By default, this method will produce a unique prefix per site using the hash salt. If the setting 'apcu_ensure_unique_prefix' is set to FALSE then if the caller does not provide a $site_path only the Drupal root will be used. This allows WebTestBase to use the same prefix ensuring that the number

FormState::isMethodType

public FormState::isMethodType($method_type) Returns the HTTP form method. Parameters string $method_type: The HTTP form method. Return value bool TRUE if the HTTP form method matches. Overrides FormStateInterface::isMethodType See also \Drupal\Core\Form\FormState::$method File core/lib/Drupal/Core/Form/FormState.php, line 597 Class FormState Stores information about the state of a form. Namespace Drupal\Core\Form Code public function isMethodType($method_type) { return $this->

Query::$queryOptions

The query options to pass on to the connection object. Type: array File core/lib/Drupal/Core/Database/Query/Query.php, line 42 Class Query Base class for query builders. Namespace Drupal\Core\Database\Query Code protected $queryOptions;