function 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\destinationCode
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.'),
  ];
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.