Query::$queryOptions

The query options to pass on to the connection object. Type: array File core/lib/Drupal/Core/Database/Query/Query.php, line 42 Class Query Base class for query builders. Namespace Drupal\Core\Database\Query Code protected $queryOptions;

PoHeader::getLanguageName

PoHeader::getLanguageName() Gets the human readable language name. Return value string The human readable language name. File core/lib/Drupal/Component/Gettext/PoHeader.php, line 108 Class PoHeader Gettext PO header handler. Namespace Drupal\Component\Gettext Code function getLanguageName() { return $this->_languageName; }

ShortcutSet::getShortcuts

public ShortcutSet::getShortcuts() Returns all the shortcuts from a shortcut set sorted correctly. Return value \Drupal\shortcut\ShortcutInterface[] An array of shortcut entities. Overrides ShortcutSetInterface::getShortcuts File core/modules/shortcut/src/Entity/ShortcutSet.php, line 118 Class ShortcutSet Defines the Shortcut set configuration entity. Namespace Drupal\shortcut\Entity Code public function getShortcuts() { $shortcuts = \Drupal::entityManager()->getStorage('shortcut

_drupal_shutdown_function

_drupal_shutdown_function() Executes registered shutdown functions. File core/includes/bootstrap.inc, line 978 Functions that need to be loaded on every Drupal request. Code function _drupal_shutdown_function() { $callbacks = &drupal_register_shutdown_function(); // Set the CWD to DRUPAL_ROOT as it is not guaranteed to be the same as it // was in the normal context of execution. chdir(DRUPAL_ROOT); try { while (list($key, $callback) = each($callbacks)) { call_user_fu

Value

Provides a form element for storage of internal information. Unlike \Drupal\Core\Render\Element\Hidden, this information is not sent to the browser in a hidden form field, but only stored in the form array for use in validation and submit processing. Properties: #value: The value of the form element that cannot be edited by the user. Usage Example: $form['entity_id'] = array('#type' => 'value', '#value' => $entity_id); Plugin annotation @FormElement("value") Hierarchy class \Drupal\C

ConfigurableLanguage::getName

public ConfigurableLanguage::getName() Gets the name of the language. Return value string The human-readable name of the language (in the language that was used to construct this object). Overrides LanguageInterface::getName File core/modules/language/src/Entity/ConfigurableLanguage.php, line 192 Class ConfigurableLanguage Defines the ConfigurableLanguage entity. Namespace Drupal\language\Entity Code public function getName() { return $this->label(); }

Html::decodeEntities

public static Html::decodeEntities($text) Decodes all HTML entities including numerical ones to regular UTF-8 bytes. Double-escaped entities will only be decoded once ("&amp;lt;" becomes "&lt;", not "<"). Be careful when using this function, as it will revert previous sanitization efforts (&lt;script&gt; will become <script>). This method is not the opposite of Html::escape(). For example, this method will convert "&eacute;" to "é", whereas Html::escape() will not c

ConfigFactoryOverrideBase::filterNestedArray

protected ConfigFactoryOverrideBase::filterNestedArray(array $original_data, array &$override_data) Filters data in nested arrays. Parameters array $original_data: Original data array to filter against. array $override_data: Override data to filter. Return value bool TRUE if $override_data was changed, FALSE otherwise. File core/lib/Drupal/Core/Config/ConfigFactoryOverrideBase.php, line 87 Class ConfigFactoryOverrideBase Defines a base event listener implementation configuration over

PoHeader::$_languageName

Human readable language name. Type: string File core/lib/Drupal/Component/Gettext/PoHeader.php, line 58 Class PoHeader Gettext PO header handler. Namespace Drupal\Component\Gettext Code private $_languageName;

ContentEntityForm::create

public static ContentEntityForm::create(ContainerInterface $container) Instantiates a new instance of this class. This is a factory method that returns a new instance of this class. The factory should pass any needed dependencies into the constructor of this class, but not the container itself. Every call to this method must return a new instance of this class; that is, it may not implement a singleton. Parameters \Symfony\Component\DependencyInjection\ContainerInterface $container: The servic