You are here

public static function CustomMultiValue::defaultSettings in CiviCRM Entity 8.3

Defines the default settings for this plugin.

Return value

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

Overrides PluginSettingsBase::defaultSettings

File

src/Plugin/Field/FieldFormatter/CustomMultiValue.php, line 31

Class

CustomMultiValue
Plugin implementation of the 'civicrm_entity_custom_multi_value' formatter.

Namespace

Drupal\civicrm_entity\Plugin\Field\FieldFormatter

Code

public static function defaultSettings() {
  return [
    'separator' => ', ',
  ] + parent::defaultSettings();
}