You are here

class OpenApiUi in OpenAPI UI 8

Same name in this branch
  1. 8 src/Annotation/OpenApiUi.php \Drupal\openapi_ui\Annotation\OpenApiUi
  2. 8 src/Element/OpenApiUi.php \Drupal\openapi_ui\Element\OpenApiUi
  3. 8 src/Plugin/openapi_ui/OpenApiUi.php \Drupal\openapi_ui\Plugin\openapi_ui\OpenApiUi

Defines the structure for an openapi_ui plugin.

Hierarchy

Expanded class hierarchy of OpenApiUi

File

src/Plugin/openapi_ui/OpenApiUi.php, line 10

Namespace

Drupal\openapi_ui\Plugin\openapi_ui
View source
class OpenApiUi extends PluginBase implements OpenApiUiInterface {

  /**
   * {@inheritdoc}
   */
  public function build(array $render_element) {
    return [];
  }

}

Members

Namesort descending Modifiers Type Description Overrides
OpenApiUi::build public function Render the tree for an openapi doc library. Overrides OpenApiUiInterface::build
PluginBase::$configuration protected property Configuration information passed into the plugin. 1
PluginBase::$pluginDefinition protected property The plugin implementation definition. 1
PluginBase::$pluginId protected property The plugin_id.
PluginBase::DERIVATIVE_SEPARATOR constant A string which is used to separate base plugin IDs from the derivative ID.
PluginBase::getBaseId public function Gets the base_plugin_id of the plugin instance. Overrides DerivativeInspectionInterface::getBaseId
PluginBase::getDerivativeId public function Gets the derivative_id of the plugin instance. Overrides DerivativeInspectionInterface::getDerivativeId
PluginBase::getPluginDefinition public function Gets the definition of the plugin implementation. Overrides PluginInspectionInterface::getPluginDefinition 3
PluginBase::getPluginId public function Gets the plugin_id of the plugin instance. Overrides PluginInspectionInterface::getPluginId
PluginBase::isConfigurable public function Determines if the plugin is configurable.
PluginBase::__construct public function Constructs a \Drupal\Component\Plugin\PluginBase object. 92