You are here

public function SmsGatewayPluginBase::defaultConfiguration in SMS Framework 8

Same name and namespace in other branches
  1. 2.x src/Plugin/SmsGatewayPluginBase.php \Drupal\sms\Plugin\SmsGatewayPluginBase::defaultConfiguration()
  2. 2.1.x src/Plugin/SmsGatewayPluginBase.php \Drupal\sms\Plugin\SmsGatewayPluginBase::defaultConfiguration()

Gets default configuration for this plugin.

Return value

array An associative array with the default configuration.

Overrides ConfigurablePluginInterface::defaultConfiguration

1 call to SmsGatewayPluginBase::defaultConfiguration()
SmsGatewayPluginBase::setConfiguration in src/Plugin/SmsGatewayPluginBase.php
Sets the configuration for this plugin instance.
1 method overrides SmsGatewayPluginBase::defaultConfiguration()
Memory::defaultConfiguration in tests/modules/sms_test_gateway/src/Plugin/SmsGateway/Memory.php
Gets default configuration for this plugin.

File

src/Plugin/SmsGatewayPluginBase.php, line 48

Class

SmsGatewayPluginBase
Base class for sms gateway plugins.

Namespace

Drupal\sms\Plugin

Code

public function defaultConfiguration() {
  return [];
}