You are here

WSConnectorInterface.php in Web Service Data 8

Same filename and directory in other branches
  1. 2.0.x src/Plugin/WSConnectorInterface.php

File

src/Plugin/WSConnectorInterface.php
View source
<?php

namespace Drupal\wsdata\Plugin;

use Drupal\Core\Plugin\ContainerFactoryPluginInterface;

/**
 * Defines an interface for Wsconnector plugin plugins.
 */
interface WSConnectorInterface extends ContainerFactoryPluginInterface {

  /**
   * Return the custom settings form for the wscall page.
   */
  public function getOptionsForm($options = []);

}

Interfaces

Namesort descending Description
WSConnectorInterface Defines an interface for Wsconnector plugin plugins.