You are here

public function DevelImageProviderPluginBase::availableMethods in Devel images provider 8

Sets the available methods to get the images from this provider.

Overrides DevelImageProviderPluginInterface::availableMethods

1 call to DevelImageProviderPluginBase::availableMethods()
DevelImageProviderPluginBase::settingsForm in lib/Drupal/devel_image_provider/Plugin/Type/DevelImageProviderPluginBase.php
Generates a settings form for this handler.

File

lib/Drupal/devel_image_provider/Plugin/Type/DevelImageProviderPluginBase.php, line 34
Contains \Drupal\devel_image_provider\DevelImageProviderPluginBase.

Class

DevelImageProviderPluginBase

Namespace

Drupal\devel_image_provider\Plugin\Type

Code

public function availableMethods() {
  return drupal_map_assoc(array(
    'curl',
    'gd',
    'file_get_contents',
  ));
}