You are here

public function File::defaultConfiguration in Commerce File 8.2

Gets default configuration for this plugin.

Return value

array An associative array with the default configuration.

Overrides LicenseTypeBase::defaultConfiguration

File

src/Plugin/Commerce/LicenseType/File.php, line 63

Class

File
The file license type.

Namespace

Drupal\commerce_file\Plugin\Commerce\LicenseType

Code

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