CONFIG_ACTIVE_DIRECTORY

$config_directories key for active directory. Deprecated in Drupal 8.0.x and will be removed before 9.0.0. Drupal core no longer creates an active directory. See also config_get_config_directory() File core/includes/bootstrap.inc, line 105 Functions that need to be loaded on every Drupal request. Code const CONFIG_ACTIVE_DIRECTORY = 'active';

RearrangeFilter::arrayKeyPlus

public static RearrangeFilter::arrayKeyPlus($array) Adds one to each key of an array. For example array(0 => 'foo') would be array(1 => 'foo'). Parameters array $array: The array to increment keys on. Return value array The array with incremented keys. File core/modules/views_ui/src/Form/Ajax/RearrangeFilter.php, line 340 Class RearrangeFilter Provides a rearrange form for Views filters. Namespace Drupal\views_ui\Form\Ajax Code public static function arrayKeyPlus($array) { $k

SqlContentEntityStorageSchema::$fieldStorageDefinitions

The storage field definitions for this entity type. Type: \Drupal\Core\Field\FieldStorageDefinitionInterface[] File core/lib/Drupal/Core/Entity/Sql/SqlContentEntityStorageSchema.php, line 49 Class SqlContentEntityStorageSchema Defines a schema handler that supports revisionable, translatable entities. Namespace Drupal\Core\Entity\Sql Code protected $fieldStorageDefinitions;

RearrangeFilter::getFormKey

public RearrangeFilter::getFormKey() Returns the key that represents this form. Return value string The form key used in the URL, e.g., the string 'add-handler' in 'admin/structure/views/%/add-handler/%/%/%'. Overrides ViewsFormInterface::getFormKey File core/modules/views_ui/src/Form/Ajax/RearrangeFilter.php, line 24 Class RearrangeFilter Provides a rearrange form for Views filters. Namespace Drupal\views_ui\Form\Ajax Code public function getFormKey() { return 'rearrange-filter'; }

HtmlTag::$voidElements

Void elements do not contain values or closing tags. See also http://www.w3.org/TR/html5/syntax.html#syntax-start-tag http://www.w3.org/TR/html5/syntax.html#void-elements File core/lib/Drupal/Core/Render/Element/HtmlTag.php, line 41 Class HtmlTag Provides a render element for any HTML tag, with properties and value. Namespace Drupal\Core\Render\Element Code static protected $voidElements = array( 'area', 'base', 'br', 'col', 'embed', 'hr', 'img', 'input', 'keygen', 'link', 'meta',

ReorderDisplays::getFormId

public ReorderDisplays::getFormId() Returns a unique string identifying the form. Return value string The unique string identifying the form. Overrides FormInterface::getFormId File core/modules/views_ui/src/Form/Ajax/ReorderDisplays.php, line 24 Class ReorderDisplays Displays the display reorder form. Namespace Drupal\views_ui\Form\Ajax Code public function getFormId() { return 'views_ui_reorder_displays_form'; }

BookManager::buildBookOutlineData

protected BookManager::buildBookOutlineData(array $links, array $parents = array(), $depth = 1) Sorts and returns the built data representing a book tree. Parameters array $links: A flat array of book links that are part of the book. Each array element is an associative array of information about the book link, containing the fields from the {book} table. This array must be ordered depth-first. array $parents: An array of the node ID values that are in the path from the current page to the roo

ContentTranslationUpdatesManager::$updateManager

The entity definition update manager. Type: \Drupal\Core\Entity\EntityDefinitionUpdateManagerInterface File core/modules/content_translation/src/ContentTranslationUpdatesManager.php, line 31 Class ContentTranslationUpdatesManager Provides the logic needed to update field storage definitions when needed. Namespace Drupal\content_translation Code protected $updateManager;

DateTimePlus::diff

public DateTimePlus::diff($datetime2, $absolute = FALSE) Returns the difference between two DateTimePlus objects. Parameters \Drupal\Component\Datetime\DateTimePlus|\DateTime $datetime2: The date to compare to. bool $absolute: Should the interval be forced to be positive? Return value \DateInterval A DateInterval object representing the difference between the two dates. Throws \BadMethodCallException If the input isn't a DateTime or DateTimePlus object. File core/lib/Drupal/Component/Datetim

ConfigNamesMapper::setLangcode

public ConfigNamesMapper::setLangcode($langcode) Sets the original language code. Parameters string $langcode: The langcode. Return value $this Overrides ConfigMapperInterface::setLangcode File core/modules/config_translation/src/ConfigNamesMapper.php, line 407 Class ConfigNamesMapper Configuration mapper base implementation. Namespace Drupal\config_translation Code public function setLangcode($langcode) { $this->langcode = $langcode; return $this; }