You are here

public static function CommentItem::defaultFieldSettings in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/comment/src/Plugin/Field/FieldType/CommentItem.php \Drupal\comment\Plugin\Field\FieldType\CommentItem::defaultFieldSettings()
  2. 10 core/modules/comment/src/Plugin/Field/FieldType/CommentItem.php \Drupal\comment\Plugin\Field\FieldType\CommentItem::defaultFieldSettings()

Defines the field-level settings for this plugin.

Return value

array A list of default settings, keyed by the setting name.

Overrides FieldItemBase::defaultFieldSettings

File

core/modules/comment/src/Plugin/Field/FieldType/CommentItem.php, line 43

Class

CommentItem
Plugin implementation of the 'comment' field type.

Namespace

Drupal\comment\Plugin\Field\FieldType

Code

public static function defaultFieldSettings() {
  return [
    'default_mode' => CommentManagerInterface::COMMENT_MODE_THREADED,
    'per_page' => 50,
    'form_location' => CommentItemInterface::FORM_BELOW,
    'anonymous' => CommentInterface::ANONYMOUS_MAYNOT_CONTACT,
    'preview' => DRUPAL_OPTIONAL,
  ] + parent::defaultFieldSettings();
}