You are here

public function NodeCounter::fields in Drupal 9

Same name in this branch
  1. 9 core/modules/statistics/src/Plugin/migrate/source/NodeCounter.php \Drupal\statistics\Plugin\migrate\source\NodeCounter::fields()
  2. 9 core/modules/statistics/src/Plugin/migrate/destination/NodeCounter.php \Drupal\statistics\Plugin\migrate\destination\NodeCounter::fields()
Same name and namespace in other branches
  1. 8 core/modules/statistics/src/Plugin/migrate/destination/NodeCounter.php \Drupal\statistics\Plugin\migrate\destination\NodeCounter::fields()

Returns an array of destination fields.

Derived classes must implement fields(), returning a list of available destination fields.

Return value

array

  • Keys: machine names of the fields
  • Values: Human-friendly descriptions of the fields.

Overrides MigrateDestinationInterface::fields

File

core/modules/statistics/src/Plugin/migrate/destination/NodeCounter.php, line 71

Class

NodeCounter
Destination for node counter.

Namespace

Drupal\statistics\Plugin\migrate\destination

Code

public function fields() {
  return [
    'nid' => $this
      ->t('The ID of the node to which these statistics apply.'),
    'totalcount' => $this
      ->t('The total number of times the node has been viewed.'),
    'daycount' => $this
      ->t('The total number of times the node has been viewed today.'),
    'timestamp' => $this
      ->t('The most recent time the node has been viewed.'),
  ];
}