You are here

public function ParagraphsType::defaultConfiguration in Paragraphs 8

Gets default configuration for this plugin.

Return value

array An associative array with the default configuration.

Overrides DrupalSqlBase::defaultConfiguration

File

src/Plugin/migrate/source/d7/ParagraphsType.php, line 25

Class

ParagraphsType
Paragraphs Type source plugin.

Namespace

Drupal\paragraphs\Plugin\migrate\source\d7

Code

public function defaultConfiguration() {
  return [
    'add_description' => FALSE,
  ] + parent::defaultConfiguration();
}