_tracker_calculate_changed

_tracker_calculate_changed($node) Picks the most recent timestamp between node changed and the last comment. @todo Check if we should introduce 'language context' here, because the callers may need different timestamps depending on the users' language? Parameters \Drupal\node\NodeInterface $node: The node entity. Return value int The node changed timestamp, or most recent comment timestamp, whichever is the greatest. File core/modules/tracker/tracker.module, line 294 Tracks recent content pos

FieldConfigEditForm::getTitle

public FieldConfigEditForm::getTitle(FieldConfigInterface $field_config) The _title_callback for the field settings form. Parameters \Drupal\field\FieldConfigInterface $field_config: The field. Return value string The label of the field. File core/modules/field_ui/src/Form/FieldConfigEditForm.php, line 199 Class FieldConfigEditForm Provides a form for the field settings form. Namespace Drupal\field_ui\Form Code public function getTitle(FieldConfigInterface $field_config) { return $

PhpStreamWrapperInterface

Defines a generic PHP stream wrapper interface. Hierarchy interface \Drupal\Core\StreamWrapper\PhpStreamWrapperInterface See also http://php.net/manual/class.streamwrapper.php File core/lib/Drupal/Core/StreamWrapper/PhpStreamWrapperInterface.php, line 10 Namespace Drupal\Core\StreamWrapper Members Name Modifiers Type Description PhpStreamWrapperInterface::dir_closedir public function PhpStreamWrapperInterface::dir_opendir public function PhpStreamWrapperInterf

BlockInterface::getVisibilityConditions

public BlockInterface::getVisibilityConditions() Gets conditions for this block. Return value \Drupal\Core\Condition\ConditionInterface[]|\Drupal\Core\Condition\ConditionPluginCollection An array or collection of configured condition plugins. File core/modules/block/src/BlockInterface.php, line 68 Class BlockInterface Provides an interface defining a block entity. Namespace Drupal\block Code public function getVisibilityConditions();

CommandWithAttachedAssetsTrait

Trait for Ajax commands that render content and attach assets. Hierarchy trait \Drupal\Core\Ajax\CommandWithAttachedAssetsTrait Related topics Ajax API Overview for Drupal's Ajax API. File core/lib/Drupal/Core/Ajax/CommandWithAttachedAssetsTrait.php, line 12 Namespace Drupal\Core\Ajax Members Name Modifiers Type Description CommandWithAttachedAssetsTrait::$attachedAssets protected property The attached assets for this Ajax command. CommandWithAttachedAssetsTrait::get

DataDefinition::getClass

public DataDefinition::getClass() Returns the class used for creating the typed data object. If not specified, the default class of the data type will be returned. Return value string The class used for creating the typed data object. Overrides DataDefinitionInterface::getClass File core/lib/Drupal/Core/TypedData/DataDefinition.php, line 188 Class DataDefinition A typed data definition class for defining data based on defined data types. Namespace Drupal\Core\TypedData Code public fun

FieldConfigBase::$entity_type

The name of the entity type the field is attached to. Type: string File core/lib/Drupal/Core/Field/FieldConfigBase.php, line 51 Class FieldConfigBase Base class for configurable field definitions. Namespace Drupal\Core\Field Code protected $entity_type;

ExposedFormCache::$cache

Stores the exposed form data. Type: array File core/modules/views/src/ExposedFormCache.php, line 17 Class ExposedFormCache Caches exposed forms, as they are heavy to generate. Namespace Drupal\views Code protected $cache = array();

ViewEditForm::submitDelayDestination

public ViewEditForm::submitDelayDestination($form, FormStateInterface $form_state) Submit handler for form buttons that do not complete a form workflow. The Edit View form is a multistep form workflow, but with state managed by the SharedTempStore rather than $form_state->setRebuild(). Without this submit handler, buttons that add or remove displays would redirect to the destination parameter (e.g., when the Edit View form is linked to from a contextual link). This handler can be added to bu

Registry

Defines the theme registry service. @internal Theme registry is expected to be used only internally since every hook_theme() implementation depends on the way this class is built. This class may get new features in minor releases so this class should be considered internal. @todo Replace local $registry variables in methods with $this->registry. Hierarchy class \Drupal\Core\Theme\Registry implements DestructableInterface File core/lib/Drupal/Core/Theme/Registry.php, line 25 Namespace