CSS_AGGREGATE_DEFAULT

The default aggregation group for CSS files added to the page. File core/includes/common.inc, line 74 Common functions that many Drupal modules will need to reference. Code const CSS_AGGREGATE_DEFAULT = 0;

EntityTypeManager::processDefinition

public EntityTypeManager::processDefinition(&$definition, $plugin_id) Performs extra processing on plugin definitions. By default we add defaults for the type to the definition. If a type has additional processing logic they can do that by replacing or extending the method. Overrides DefaultPluginManager::processDefinition File core/lib/Drupal/Core/Entity/EntityTypeManager.php, line 90 Class EntityTypeManager Manages entity type plugin definitions. Namespace Drupal\Core\Entity Code

PREG_CLASS_NUMBERS

Matches all 'N' Unicode character classes (numbers) File core/modules/search/search.module, line 17 Enables site-wide keyword searching. Code define('PREG_CLASS_NUMBERS', '\x{30}-\x{39}\x{b2}\x{b3}\x{b9}\x{bc}-\x{be}\x{660}-\x{669}\x{6f0}-\x{6f9}' . '\x{966}-\x{96f}\x{9e6}-\x{9ef}\x{9f4}-\x{9f9}\x{a66}-\x{a6f}\x{ae6}-\x{aef}' . '\x{b66}-\x{b6f}\x{be7}-\x{bf2}\x{c66}-\x{c6f}\x{ce6}-\x{cef}\x{d66}-\x{d6f}' . '\x{e50}-\x{e59}\x{ed0}-\x{ed9}\x{f20}-\x{f33}\x{1040}-\x{1049}\x{1369}-' . '\

Html::setIsAjax

public static Html::setIsAjax($is_ajax) Sets if this request is an Ajax request. Parameters bool $is_ajax: TRUE if this request is an Ajax request, FALSE otherwise. File core/lib/Drupal/Component/Utility/Html.php, line 136 Class Html Provides DOMDocument helpers for parsing and serializing HTML strings. Namespace Drupal\Component\Utility Code public static function setIsAjax($is_ajax) { static::$isAjax = $is_ajax; }

Renderer::renderPlaceholder

public Renderer::renderPlaceholder($placeholder, array $elements) Renders final HTML for a placeholder. Renders the placeholder in isolation. Parameters string $placeholder: An attached placeholder to render. (This must be a key of one of the values of $elements['#attached']['placeholders'].) array $elements: The structured array describing the data to be rendered. Return value array The updated $elements. Overrides RendererInterface::renderPlaceholder See also \Drupal\Core\Render\RendererIn

StringStorageInterface::delete

public StringStorageInterface::delete($string) Delete string from storage. Parameters \Drupal\locale\StringInterface $string: The string object. Return value \Drupal\locale\StringStorageInterface The called object. Throws \Drupal\locale\StringStorageException In case of failures, an exception is thrown. File core/modules/locale/src/StringStorageInterface.php, line 124 Class StringStorageInterface Defines the locale string storage interface. Namespace Drupal\locale Code public functi

Html::$uriAttributes

All attributes that may contain URIs. The attributes 'code' and 'codebase' are omitted, because they only exist for the <applet> tag. The time of Java applets has passed. The attribute 'icon' is omitted, because no browser implements the <command> tag anymore. See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/command. The 'manifest' attribute is omitted because it only exists for the <html> tag. That tag only makes sense in a HTML-served-as-HTML context, in which c

StorageComparerInterface::extractRenameNames

public StorageComparerInterface::extractRenameNames($name) Extracts old and new configuration names from a configuration change name. Parameters string $name: The configuration change name, as provided by ConfigImporter::createRenameName(). Return value array An associative array of configuration names. The array keys are 'old_name' and 'new_name' representing the old and new configuration object names during a rename operation. See also \Drupal\Core\Config\StorageComparer::createRenameNames

RfcLogLevel::ALERT

Log message severity -- Alert: action must be taken immediately. File core/lib/Drupal/Core/Logger/RfcLogLevel.php, line 43 Class RfcLogLevel Defines various logging severity levels. Namespace Drupal\Core\Logger Code const ALERT = 1;

FileTransfer::setChroot

FileTransfer::setChroot() Sets the chroot and changes the jail to match the correct path scheme. File core/lib/Drupal/Core/FileTransfer/FileTransfer.php, line 376 Class FileTransfer Defines the base FileTransfer class. Namespace Drupal\Core\FileTransfer Code function setChroot() { $this->chroot = $this->findChroot(); $this->jail = $this->fixRemotePath($this->jail); }