You are here

public function GlExchangeAdapter::getDefaultSettings in GlobalLink Connect for Drupal 8.2

Same name and namespace in other branches
  1. 8 src/GlExchangeAdapter.php \Drupal\globallink\GlExchangeAdapter::getDefaultSettings()

Get default settings.

Return value

array Array of default settings.

1 call to GlExchangeAdapter::getDefaultSettings()
GlExchangeAdapter::getPDConfig in src/GlExchangeAdapter.php
Get the PDConfig object.

File

src/GlExchangeAdapter.php, line 60

Class

GlExchangeAdapter
Provides an interface to the provided library.

Namespace

Drupal\globallink

Code

public function getDefaultSettings() {
  return [
    'pd_url' => '',
    'pd_username' => '',
    'pd_password' => '',
    'pd_projectid' => '',
    'pd_submissionprefix' => '',
    'pd_classifier' => '',
    'pd_agent' => 'Drupal 8',
  ];
}