schema.inc

Schema API handling functions. File core/includes/schema.inc Functions Name Description drupal_get_installed_schema_version Returns the currently installed schema version for a module. drupal_get_module_schema Returns a module's schema. drupal_get_schema_versions Returns an array of available schema versions for a module. drupal_install_schema Creates all tables defined in a module's hook_schema(). drupal_schema_get_field_value Typecasts values to proper datatypes. d

StorageException

An exception thrown in case of storage operation errors. Hierarchy class \Drupal\Core\Config\ConfigException extends \RuntimeExceptionclass \Drupal\Core\Config\StorageException File core/lib/Drupal/Core/Config/StorageException.php, line 8 Namespace Drupal\Core\Config Members

ConfigMapperManager

Manages plugins for configuration translation mappers. Hierarchy class \Drupal\Component\Plugin\PluginManagerBase implements PluginManagerInterface uses DiscoveryTraitclass \Drupal\Core\Plugin\DefaultPluginManager implements CachedDiscoveryInterface, PluginManagerInterface, CacheableDependencyInterface uses DiscoveryCachedTrait, UseCacheBackendTraitclass \Drupal\config_translation\ConfigMapperManager implements ConfigMapperManagerInterface File core/modules/config_translation/src/ConfigMap

RfcLogLevel::ERROR

Log message severity -- Error conditions. File core/lib/Drupal/Core/Logger/RfcLogLevel.php, line 53 Class RfcLogLevel Defines various logging severity levels. Namespace Drupal\Core\Logger Code const ERROR = 3;

RdfMapping

Config entity for working with RDF mappings. Plugin annotation @ConfigEntityType( id = "rdf_mapping", label = @Translation("RDF mapping"), config_prefix = "mapping", entity_keys = { "id" = "id" }, config_export = { "id", "targetEntityType", "bundle", "types", "fieldMappings", } ) Hierarchy class \Drupal\Core\Entity\Entity implements EntityInterface uses RefinableCacheableDependencyTrait, DependencySerializationTraitclass \Drupal\Core\Config\Entity\ConfigEn

ActionManager::__construct

public ActionManager::__construct(\Traversable $namespaces, CacheBackendInterface $cache_backend, ModuleHandlerInterface $module_handler) Constructs a new class instance. Parameters \Traversable $namespaces: An object that implements \Traversable which contains the root paths keyed by the corresponding namespace to look for plugin implementations. \Drupal\Core\Cache\CacheBackendInterface $cache_backend: Cache backend instance to use. \Drupal\Core\Extension\ModuleHandlerInterface $module_handle

ConfigFormBase

Base class for implementing system configuration forms. Hierarchy class \Drupal\Core\Form\FormBase implements ContainerInjectionInterface, FormInterface uses DependencySerializationTrait, LoggerChannelTrait, LinkGeneratorTrait, RedirectDestinationTrait, UrlGeneratorTrait, StringTranslationTraitclass \Drupal\Core\Form\ConfigFormBase uses ConfigFormBaseTrait File core/lib/Drupal/Core/Form/ConfigFormBase.php, line 11 Namespace Drupal\Core\Form Members Name Modifiers Type Descripti

WidgetBaseInterface::setWidgetState

public static WidgetBaseInterface::setWidgetState(array $parents, $field_name, FormStateInterface $form_state, array $field_state) Stores processing information about the widget in $form_state. This method is static so that it can be used in static Form API #callbacks. Parameters array $parents: The array of #parents where the widget lives in the form. string $field_name: The field name. \Drupal\Core\Form\FormStateInterface $form_state: The form state. array $field_state: The array of data to

ConfigMapperManagerInterface

Provides a common interface for config mapper managers. Hierarchy interface \Drupal\Component\Plugin\Discovery\DiscoveryInterface; interface \Drupal\Component\Plugin\Factory\FactoryInterface; interface \Drupal\Component\Plugin\Mapper\MapperInterfaceinterface \Drupal\Component\Plugin\PluginManagerInterfaceinterface \Drupal\config_translation\ConfigMapperManagerInterface File core/modules/config_translation/src/ConfigMapperManagerInterface.php, line 11 Namespace Drupal\config_translation

Config::setOverriddenData

protected Config::setOverriddenData() Sets the current data for this configuration object. Configuration overrides operate at two distinct layers: modules and settings.php. Overrides in settings.php take precedence over values provided by modules. Precedence or different module overrides is determined by the priority of the config.factory.override tagged services. Return value \Drupal\Core\Config\Config The configuration object. File core/lib/Drupal/Core/Config/Config.php, line 155 Class C