NodeChanged.php

Namespace

Drupal\node\Plugin\views\argument_default

File

core/modules/node/src/Plugin/views/argument_default/NodeChanged.php

View source
<?php

namespace Drupal\node\Plugin\views\argument_default;

use Drupal\Core\StringTranslation\TranslatableMarkup;
use Drupal\node\NodeInterface;
use Drupal\views\Attribute\ViewsArgumentDefault;

/**
 * Provides the 'changed' time of the current node as default argument value.
 */
class NodeChanged extends NodeDateArgumentDefaultPluginBase {
  
  /**
   * {@inheritdoc}
   */
  protected function getNodeDateValue(NodeInterface $node) : int {
    return $node->getChangedTime();
  }

}

Classes

Title Deprecated Summary
NodeChanged Provides the 'changed' time of the current node as default argument value.

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