ViewUI::isLocked

public ViewUI::isLocked() Returns whether the current view is locked. Return value bool TRUE if the view is locked, FALSE otherwise. File core/modules/views_ui/src/ViewUI.php, line 887 Class ViewUI Stores UI related temporary settings. Namespace Drupal\views_ui Code public function isLocked() { return is_object($this->lock) && ($this->lock->owner != \Drupal::currentUser()->id()); }

LanguageNegotiation::$id

The language negotiation plugin ID. Type: string File core/modules/language/src/Annotation/LanguageNegotiation.php, line 30 Class LanguageNegotiation Defines a language negotiation annotation object. Namespace Drupal\language\Annotation Code public $id;

ForumManager::__sleep

public ForumManager::__sleep() File core/modules/forum/src/ForumManager.php, line 496 Class ForumManager Provides forum manager service. Namespace Drupal\forum Code public function __sleep() { $vars = $this->defaultSleep(); // Do not serialize static cache. unset($vars['history'], $vars['index'], $vars['lastPostData'], $vars['forumChildren'], $vars['forumStatistics']); return $vars; }

FileInterface::setTemporary

public FileInterface::setTemporary() Sets the file status to temporary. File core/modules/file/src/FileInterface.php, line 109 Class FileInterface Defines getter and setter methods for file entity base fields. Namespace Drupal\file Code public function setTemporary();

Color::validateColor

public static Color::validateColor(&$element, FormStateInterface $form_state, &$complete_form) Form element validation handler for #type 'color'. File core/lib/Drupal/Core/Render/Element/Color.php, line 52 Class Color Provides a form element for choosing a color. Namespace Drupal\Core\Render\Element Code public static function validateColor(&$element, FormStateInterface $form_state, &$complete_form) { $value = trim($element['#value']); // Default to black if no val

PagersCacheContext::getLabel

public static PagersCacheContext::getLabel() Returns the label of the cache context. Return value string The label of the cache context. Overrides CalculatedCacheContextInterface::getLabel See also Cache File core/lib/Drupal/Core/Cache/Context/PagersCacheContext.php, line 19 Class PagersCacheContext Defines a cache context for "per page in a pager" caching. Namespace Drupal\Core\Cache\Context Code public static function getLabel() { return t('Pager'); }

Comment::$threadLock

The thread for which a lock was acquired. File core/modules/comment/src/Entity/Comment.php, line 67 Class Comment Defines the comment entity class. Namespace Drupal\comment\Entity Code protected $threadLock = '';

FieldConfigBase::$id

The field ID. The ID consists of 3 parts: the entity type, bundle and the field name. Example: node.article.body, user.user.field_main_image. Type: string File core/lib/Drupal/Core/Field/FieldConfigBase.php, line 24 Class FieldConfigBase Base class for configurable field definitions. Namespace Drupal\Core\Field Code protected $id;

Select::addExpression

public Select::addExpression($expression, $alias = NULL, $arguments = array()) Adds an expression to the list of "fields" to be SELECTed. An expression can be any arbitrary string that is valid SQL. That includes various functions, which may in some cases be database-dependent. This method makes no effort to correct for database-specific functions. Parameters $expression: The expression string. May contain placeholders. $alias: The alias for this expression. If not specified, one will be gener

DRUPAL_ANONYMOUS_RID

Role ID for anonymous users; should match what's in the "role" table. Deprecated in Drupal 8.0.0, will be removed before Drupal 9.0.0. Use Drupal\Core\Session\AccountInterface::ANONYMOUS_ROLE or \Drupal\user\RoleInterface::ANONYMOUS_ID instead. File core/includes/bootstrap.inc, line 62 Functions that need to be loaded on every Drupal request. Code const DRUPAL_ANONYMOUS_RID = AccountInterface::ANONYMOUS_ROLE;