function NodeType::getCommentFields

Returns the fields containing comment settings for each node type.

Return value

string[] An associative array of field descriptions, keyed by field.

2 calls to NodeType::getCommentFields()
NodeType::fields in core/modules/node/src/Plugin/migrate/source/d6/NodeType.php
Returns available fields on the source.
NodeType::prepareRow in core/modules/node/src/Plugin/migrate/source/d6/NodeType.php
Adds additional data to the row.

File

core/modules/node/src/Plugin/migrate/source/d6/NodeType.php, line 99

Class

NodeType
Drupal 6 Node types source from database.

Namespace

Drupal\node\Plugin\migrate\source\d6

Code

protected function getCommentFields() {
  return [
    'comment' => $this->t('Default comment setting'),
    'comment_default_mode' => $this->t('Default display mode'),
    'comment_default_per_page' => $this->t('Default comments per page'),
    'comment_anonymous' => $this->t('Anonymous commenting'),
    'comment_subject_field' => $this->t('Comment subject field'),
    'comment_preview' => $this->t('Preview comment'),
    'comment_form_location' => $this->t('Location of comment submission form'),
  ];
}

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