class NodeChanged

Provides the 'changed' time of the current node as default argument value.

Attributes

#[ViewsArgumentDefault(id: 'node_changed', title: new TranslatableMarkup("Current node 'changed' time"))]

Hierarchy

Expanded class hierarchy of NodeChanged

File

core/modules/node/src/Plugin/views/argument_default/NodeChanged.php, line 12

Namespace

Drupal\node\Plugin\views\argument_default
View source
class NodeChanged extends NodeDateArgumentDefaultPluginBase {
  
  /**
   * {@inheritdoc}
   */
  protected function getNodeDateValue(NodeInterface $node) : int {
    return $node->getChangedTime();
  }

}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.