function NodeCounter::fields

Returns available fields on the source.

Return value

array Available fields in the source, keys are the field machine names as used in field mappings, values are descriptions.

Overrides MigrateSourceInterface::fields

File

core/modules/statistics/src/Plugin/migrate/source/NodeCounter.php, line 34

Class

NodeCounter
Drupal 6/7 node counter source from database.

Namespace

Drupal\statistics\Plugin\migrate\source

Code

public function fields() {
  return [
    'nid' => $this->t('The node ID.'),
    '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.'),
  ];
}

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