OptimizedPhpArrayDumper::prepareParameters

protected OptimizedPhpArrayDumper::prepareParameters(array $parameters, $escape = TRUE) Prepares parameters for the PHP array dumping. Parameters array $parameters: An array of parameters. bool $escape: Whether keys with '%' should be escaped or not. Return value array An array of prepared parameters. File core/lib/Drupal/Component/DependencyInjection/Dumper/OptimizedPhpArrayDumper.php, line 144 Class OptimizedPhpArrayDumper OptimizedPhpArrayDumper dumps a service container as a serializ

MemoryBackend::deleteMultiple

public MemoryBackend::deleteMultiple(array $cids) Deletes multiple items from the cache. If the cache items are being deleted because they are no longer "fresh", you may consider using invalidateMultiple() instead. This allows callers to retrieve the invalid items by calling get() with $allow_invalid set to TRUE. In some cases an invalid item may be acceptable rather than having to rebuild the cache. Parameters array $cids: An array of cache IDs to delete. Overrides CacheBackendInterface::dele

CachedStorage::getCacheKeys

protected CachedStorage::getCacheKeys(array $names) Returns a cache key map for an array of configuration names. Parameters array $names: The configuration names. Return value array An array of cache keys keyed by configuration names. File core/lib/Drupal/Core/Config/CachedStorage.php, line 279 Class CachedStorage Defines the cached storage. Namespace Drupal\Core\Config Code protected function getCacheKeys(array $names) { $prefix = $this->getCollectionPrefix(); $cache_keys = a

FilterFormat::$filters

Configured filters for this text format. An associative array of filters assigned to the text format, keyed by the instance ID of each filter and using the properties: id: The plugin ID of the filter plugin instance. provider: The name of the provider that owns the filter. status: (optional) A Boolean indicating whether the filter is enabled in the text format. Defaults to FALSE. weight: (optional) The weight of the filter in the text format. Defaults to 0. settings: (optional) An array of

ConfigEntityInterface::disable

public ConfigEntityInterface::disable() Disables the configuration entity. Return value $this File core/lib/Drupal/Core/Config/Entity/ConfigEntityInterface.php, line 27 Class ConfigEntityInterface Defines a common interface for configuration entities. Namespace Drupal\Core\Config\Entity Code public function disable();

EntityTypeInterface::getBundleOf

public EntityTypeInterface::getBundleOf() Gets the entity type for which this entity provides bundles. It can be used by other modules to act accordingly; for example, the Field UI module uses it to add operation links to manage fields and displays. Return value string|null The entity type for which this entity provides bundles, or NULL if does not provide bundles for another entity type. File core/lib/Drupal/Core/Entity/EntityTypeInterface.php, line 546 Class EntityTypeInterface Provides

OptimizedPhpArrayDumper::getParameterCall

protected OptimizedPhpArrayDumper::getParameterCall($name) Gets a parameter reference in a suitable PHP array format. Parameters string $name: The name of the parameter to get a reference for. Return value string|\stdClass A suitable representation of the parameter reference. File core/lib/Drupal/Component/DependencyInjection/Dumper/OptimizedPhpArrayDumper.php, line 500 Class OptimizedPhpArrayDumper OptimizedPhpArrayDumper dumps a service container as a serialized PHP array. Namespace

EntityForm::getBaseFormId

public EntityForm::getBaseFormId() Returns a string identifying the base form. Return value string|null The string identifying the base form or NULL if this is not a base form. Overrides BaseFormIdInterface::getBaseFormId File core/lib/Drupal/Core/Entity/EntityForm.php, line 72 Class EntityForm Base class for entity forms. Namespace Drupal\Core\Entity Code public function getBaseFormId() { // Assign ENTITYTYPE_form as base form ID to invoke corresponding // hook_form_alter(), #val

admin.inc

Provides the Views' administrative interface. File core/modules/views_ui/admin.inc Functions Name Description views_ui_add_ajax_trigger Converts a form element in the add view wizard to be AJAX-enabled. views_ui_add_ajax_wrapper After-build function that adds a wrapper to a form region (for AJAX refreshes). views_ui_add_limited_validation Processes a non-JavaScript fallback submit button to limit its validation errors. views_ui_ajax_update_form Updates a part of the add vi

UserAuthenticationController::$userStorage

The user storage. Type: \Drupal\user\UserStorageInterface File core/modules/user/src/Controller/UserAuthenticationController.php, line 52 Class UserAuthenticationController Provides controllers for login, login status and logout via HTTP requests. Namespace Drupal\user\Controller Code protected $userStorage;