DiffOp::nclosing

public DiffOp::nclosing() File core/lib/Drupal/Component/Diff/Engine/DiffOp.php, line 23 Class DiffOp @todo document @private @subpackage DifferenceEngine Namespace Drupal\Component\Diff\Engine Code public function nclosing() { return $this->closing ? sizeof($this->closing) : 0; }

ConfigFactoryInterface::loadMultiple

public ConfigFactoryInterface::loadMultiple(array $names) Returns a list of configuration objects for the given names. This will pre-load all requested configuration objects does not create new configuration objects. This method always return immutable objects. ConfigFactoryInterface::getEditable() should be used to retrieve mutable configuration objects, one by one. Parameters array $names: List of names of configuration objects. Return value \Drupal\Core\Config\ImmutableConfig[] List of suc

InsertTrait::fields

public InsertTrait::fields(array $fields, array $values = array()) Adds a set of field->value pairs to be inserted. This method may only be called once. Calling it a second time will be ignored. To queue up multiple sets of values to be inserted at once, use the values() method. Parameters array $fields: An array of fields on which to insert. This array may be indexed or associative. If indexed, the array is taken to be the list of fields. If associative, the keys of the array are taken to

FormattedDateDiff::getString

public FormattedDateDiff::getString() Return value string File core/lib/Drupal/Core/Datetime/FormattedDateDiff.php, line 49 Class FormattedDateDiff Contains a formatted time difference. Namespace Drupal\Core\Datetime Code public function getString() { return $this->string; }

ComplexDataInterface::getProperties

public ComplexDataInterface::getProperties($include_computed = FALSE) Gets an array of property objects. Parameters bool $include_computed: If set to TRUE, computed properties are included. Defaults to FALSE. Return value \Drupal\Core\TypedData\TypedDataInterface[] An array of property objects implementing the TypedDataInterface, keyed by property name. Throws \Drupal\Core\TypedData\Exception\MissingDataException If the complex data structure is unset and no property can be created. File cor

SelectLanguageForm

Provides the language selection form. Note that hardcoded text provided by this form is not translated. This is because translations are downloaded as a result of submitting this form. Hierarchy class \Drupal\Core\Form\FormBase implements ContainerInjectionInterface, FormInterface uses DependencySerializationTrait, LoggerChannelTrait, LinkGeneratorTrait, RedirectDestinationTrait, UrlGeneratorTrait, StringTranslationTraitclass \Drupal\Core\Installer\Form\SelectLanguageForm File core/lib/Drup

ViewsCache::$short_title

(optional) The short title used in the views UI. Type: \Drupal\Core\Annotation\Translation Related topics Annotation for translatable text Describes how to put translatable UI text into annotations. File core/modules/views/src/Annotation/ViewsCache.php, line 39 Class ViewsCache Defines a Plugin annotation object for views cache plugins. Namespace Drupal\views\Annotation Code public $short_title = '';

FieldType::$no_ui

A boolean stating that fields of this type cannot be created through the UI. Type: bool File core/lib/Drupal/Core/Field/Annotation/FieldType.php, line 87 Class FieldType Defines a FieldType annotation object. Namespace Drupal\Core\Field\Annotation Code public $no_ui = FALSE;

SelectInterface::getUnion

public &SelectInterface::getUnion() Returns a reference to the union queries for this query. This include queries for UNION, UNION ALL, and UNION DISTINCT. Because this method returns by reference, alter hooks may edit the tables array directly to make their changes. If just adding union queries, however, the use of the union() method is preferred. Note that this method must be called by reference as well: $fields =& $query->getUnion(); Return value A reference to the union query a

ConfigImporter::getEmptyExtensionsProcessedList

protected ConfigImporter::getEmptyExtensionsProcessedList() Gets an empty list of extensions to process. Return value array An empty list of extensions to process. File core/lib/Drupal/Core/Config/ConfigImporter.php, line 255 Class ConfigImporter Defines a configuration importer. Namespace Drupal\Core\Config Code protected function getEmptyExtensionsProcessedList() { return array( 'module' => array( 'install' => array(), 'uninstall' => array(), ), 't