DRUPAL_DISABLED

Disabled option on forms and settings File core/modules/system/system.module, line 49 Configuration system that lets administrators modify the workings of the site. Code const DRUPAL_DISABLED = 0;

ImageStyleInterface::getName

public ImageStyleInterface::getName() Returns the image style. Return value string The name of the image style. File core/modules/image/src/ImageStyleInterface.php, line 32 Class ImageStyleInterface Provides an interface defining an image style entity. Namespace Drupal\image Code public function getName();

EntityModerationRouteProvider::$entityFieldManager

The entity manager. Type: \Drupal\Core\Entity\EntityFieldManagerInterface File core/modules/content_moderation/src/Routing/EntityModerationRouteProvider.php, line 28 Class EntityModerationRouteProvider Dynamic route provider for the Content moderation module. Namespace Drupal\content_moderation\Routing Code protected $entityFieldManager;

Tar::getArchive

public Tar::getArchive() Retrieves the tar engine itself. In some cases it may be necessary to directly access the underlying Archive_Tar object for implementation-specific logic. This is for advanced use only as it is not shared by other implementations of ArchiveInterface. Return value Archive_Tar The Archive_Tar object used by this object. File core/lib/Drupal/Core/Archiver/Tar.php, line 87 Class Tar Defines a archiver implementation for .tar files. Namespace Drupal\Core\Archiver C

drupal_requirements_severity

drupal_requirements_severity(&$requirements) Extracts the highest severity from the requirements array. Parameters $requirements: An array of requirements, in the same format as is returned by hook_requirements(). Return value The highest severity in the array. File core/includes/install.inc, line 975 API functions for installing modules and themes. Code function drupal_requirements_severity(&$requirements) { $severity = REQUIREMENT_OK; foreach ($requirements as $requirement) {

ModerationStateTransitionListBuilder::$roleStorage

The role storage. Type: \Drupal\user\RoleStorageInterface File core/modules/content_moderation/src/ModerationStateTransitionListBuilder.php, line 30 Class ModerationStateTransitionListBuilder Provides a listing of Moderation state transition entities. Namespace Drupal\content_moderation Code protected $roleStorage;

FieldStorageConfig::isQueryable

public FieldStorageConfig::isQueryable() Determines whether the field is queryable via QueryInterface. Return value bool TRUE if the field is queryable. Overrides FieldStorageDefinitionInterface::isQueryable File core/modules/field/src/Entity/FieldStorageConfig.php, line 689 Class FieldStorageConfig Defines the Field storage configuration entity. Namespace Drupal\field\Entity Code public function isQueryable() { return TRUE; }

ThemeInitializationInterface::getActiveTheme

public ThemeInitializationInterface::getActiveTheme(Extension $theme, array $base_themes = []) Builds up the active theme object from extensions. Parameters \Drupal\Core\Extension\Extension $theme: The theme extension object. \Drupal\Core\Extension\Extension[] $base_themes: An array of extension objects of base theme and its bases. It is ordered by 'next parent first', meaning the top level of the chain will be first. Return value \Drupal\Core\Theme\ActiveTheme The active theme instance for t

ThemeInitialization::prepareStylesheetsRemove

protected ThemeInitialization::prepareStylesheetsRemove(Extension $theme, $base_themes) Prepares stylesheets-remove specified in the *.info.yml file. @todo Remove in Drupal 9.0.x. Parameters \Drupal\Core\Extension\Extension $theme: The theme extension object. \Drupal\Core\Extension\Extension[] $base_themes: An array of base themes. Return value string[] The list of stylesheets-remove specified in the *.info.yml file. File core/lib/Drupal/Core/Theme/ThemeInitialization.php, line 309 Class

TranslateEditForm::getFormId

public TranslateEditForm::getFormId() Returns a unique string identifying the form. Return value string The unique string identifying the form. Overrides FormInterface::getFormId File core/modules/locale/src/Form/TranslateEditForm.php, line 17 Class TranslateEditForm Defines a translation edit form. Namespace Drupal\locale\Form Code public function getFormId() { return 'locale_translate_edit_form'; }