ConfigManagerInterface::getConfigDependencyManager

public ConfigManagerInterface::getConfigDependencyManager() Creates and populates a ConfigDependencyManager object. The configuration dependency manager is populated with data from the active store. Return value \Drupal\Core\Config\Entity\ConfigDependencyManager File core/lib/Drupal/Core/Config/ConfigManagerInterface.php, line 101 Class ConfigManagerInterface Provides an interface for configuration manager. Namespace Drupal\Core\Config Code public function getConfigDependencyManager()

LoggerChannelFactoryInterface::addLogger

public LoggerChannelFactoryInterface::addLogger(LoggerInterface $logger, $priority = 0) Adds a logger to all the channels. Parameters \Psr\Log\LoggerInterface $logger: The PSR-3 logger to add. int $priority: The priority of the logger being added. See also \Drupal\Core\DependencyInjection\Compiler\RegisterLoggersPass File core/lib/Drupal/Core/Logger/LoggerChannelFactoryInterface.php, line 30 Class LoggerChannelFactoryInterface Logger channel factory interface. Namespace Drupal\Core\Lo

LibraryDiscoveryParser::$themeManager

The theme manager. Type: \Drupal\Core\Theme\ThemeManagerInterface File core/lib/Drupal/Core/Asset/LibraryDiscoveryParser.php, line 32 Class LibraryDiscoveryParser Parses library files to get extension data. Namespace Drupal\Core\Asset Code protected $themeManager;

CategoryAutocompleteController::$blockManager

The block manager. Type: \Drupal\Core\Block\BlockManagerInterface File core/modules/block/src/Controller/CategoryAutocompleteController.php, line 22 Class CategoryAutocompleteController Returns autocomplete responses for block categories. Namespace Drupal\block\Controller Code protected $blockManager;

ImageStyleInterface::getEffect

public ImageStyleInterface::getEffect($effect) Returns a specific image effect. Parameters string $effect: The image effect ID. Return value \Drupal\image\ImageEffectInterface The image effect object. File core/modules/image/src/ImageStyleInterface.php, line 166 Class ImageStyleInterface Provides an interface defining an image style entity. Namespace Drupal\image Code public function getEffect($effect);

locale_form_language_admin_add_form_alter_submit

locale_form_language_admin_add_form_alter_submit($form, FormStateInterface $form_state) Form submission handler for language_admin_add_form(). Set a batch for a newly-added language. File core/modules/locale/locale.module, line 685 Enables the translation of the user interface to languages other than English. Code function locale_form_language_admin_add_form_alter_submit($form, FormStateInterface $form_state) { \Drupal::moduleHandler()->loadInclude('locale', 'fetch.inc'); $options = _l

ContentEntityForm::getFormLangcode

public ContentEntityForm::getFormLangcode(FormStateInterface $form_state) Gets the code identifying the active form language. Parameters \Drupal\Core\Form\FormStateInterface $form_state: The current state of the form. Return value string The form language code. Overrides ContentEntityFormInterface::getFormLangcode File core/lib/Drupal/Core/Entity/ContentEntityForm.php, line 205 Class ContentEntityForm Entity form variant for content entity types. Namespace Drupal\Core\Entity Code pub

drupal_get_database_types

drupal_get_database_types() Returns all supported database driver installer objects. Return value \Drupal\Core\Database\Install\Tasks[] An array of available database driver installer objects. File core/includes/install.inc, line 160 API functions for installing modules and themes. Code function drupal_get_database_types() { $databases = array(); $drivers = array(); // The internal database driver name is any valid PHP identifier. $mask = '/^' . DRUPAL_PHP_FUNCTION_PATTERN . '$/';

TwigExtension::escapePlaceholder

public TwigExtension::escapePlaceholder($env, $string) Provides a placeholder wrapper around ::escapeFilter. Parameters \Twig_Environment $env: A Twig_Environment instance. mixed $string: The value to be escaped. Return value string|null The escaped, rendered output, or NULL if there is no valid output. File core/lib/Drupal/Core/Template/TwigExtension.php, line 378 Class TwigExtension A class providing Drupal Twig extensions. Namespace Drupal\Core\Template Code public function escape

FilterDisableForm::submitForm

public FilterDisableForm::submitForm(array &$form, FormStateInterface $form_state) This is the default entity object builder function. It is called before any other submit handler to build the new entity object to be used by the following submit handlers. At this point of the form workflow the entity is validated and the form state can be updated, this way the subsequently invoked handlers can retrieve a regular entity object to act on. Generally this method should not be overridden unless