IMAGE_STORAGE_NORMAL

Image style constant for user presets in the database. Deprecated in Drupal 8.1.x, will be removed before Drupal 9.0.0. File core/modules/image/image.module, line 20 Exposes global functionality for creating image styles. Code const IMAGE_STORAGE_NORMAL = 1;

CSS_BASE

The default weight for CSS rules that style HTML elements ("base" styles). File core/includes/common.inc, line 84 Common functions that many Drupal modules will need to reference. Code const CSS_BASE = -200;

MissingThemeDependencyException::$theme

The missing theme dependency. Type: string File core/lib/Drupal/Core/Theme/MissingThemeDependencyException.php, line 17 Class MissingThemeDependencyException Exception to be thrown when base theme for installed theme is not installed. Namespace Drupal\Core\Theme Code protected $theme;

ConfigFactory

Defines the configuration object factory. The configuration object factory instantiates a Config object for each configuration object name that is accessed and returns it to callers. Each configuration object gets a storage object injected, which is used for reading and writing the configuration data. Hierarchy class \Drupal\Core\Config\ConfigFactory implements ConfigFactoryInterface, EventSubscriberInterface See also \Drupal\Core\Config\Config \Drupal\Core\Config\StorageInterface Related t

EntityTypeInterface::getAccessControlClass

public EntityTypeInterface::getAccessControlClass() Gets the access control class. Return value string The class for this entity type's access control. File core/lib/Drupal/Core/Entity/EntityTypeInterface.php, line 342 Class EntityTypeInterface Provides an interface for an entity type and its metadata. Namespace Drupal\Core\Entity Code public function getAccessControlClass();

PhpStreamWrapperInterface::stream_eof

public PhpStreamWrapperInterface::stream_eof() Return value bool File core/lib/Drupal/Core/StreamWrapper/PhpStreamWrapperInterface.php, line 74 Class PhpStreamWrapperInterface Defines a generic PHP stream wrapper interface. Namespace Drupal\Core\StreamWrapper Code public function stream_eof();

PoHeader::$_projectName

Name of the project the translation belongs to. Type: string File core/lib/Drupal/Component/Gettext/PoHeader.php, line 65 Class PoHeader Gettext PO header handler. Namespace Drupal\Component\Gettext Code private $_projectName;

PoItem::formatString

private PoItem::formatString($string) Formats a string for output on multiple lines. File core/lib/Drupal/Component/Gettext/PoItem.php, line 262 Class PoItem PoItem handles one translation. Namespace Drupal\Component\Gettext Code private function formatString($string) { // Escape characters for processing. $string = addcslashes($string, "\0..\37\\\""); // Always include a line break after the explicit \n line breaks from // the source string. Otherwise wrap at 70 chars to acco

TransliterationInterface::transliterate

public TransliterationInterface::transliterate($string, $langcode = 'en', $unknown_character = '?', $max_length = NULL) Transliterates text from Unicode to US-ASCII. Parameters string $string: The string to transliterate. string $langcode: (optional) The language code of the language the string is in. Defaults to 'en' if not provided. Warning: this can be unfiltered user input. string $unknown_character: (optional) The character to substitute for characters in $string without transliterated eq

Updater::makeBackup

public Updater::makeBackup(FileTransfer $filetransfer, $from, $to) Performs a backup. @todo Not implemented: https://www.drupal.org/node/2474355 Parameters \Drupal\Core\FileTransfer\FileTransfer $filetransfer: Object which is a child of FileTransfer. string $from: The file path to copy from. string $to: The file path to copy to. File core/lib/Drupal/Core/Updater/Updater.php, line 369 Class Updater Defines the base class for Updaters used in Drupal. Namespace Drupal\Core\Updater Code p