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 an annotation object for OpenApiUi plugins.

Plugin Namespace: Plugin\openapi_ui\Plugin\openapi_ui.

Hierarchy

Expanded class hierarchy of OpenApiUi

See also

Plugin API

File

src/Annotation/OpenApiUi.php, line 16

Namespace

Drupal\openapi_ui\Annotation
View source
class OpenApiUi extends Plugin {

  /**
   * The plugin id.
   *
   * @var string
   */
  public $id;

  /**
   * The plugin label.
   *
   * @var string
   */
  public $label;

}

Members

Namesort descending Modifiers Type Description Overrides
OpenApiUi::$id public property The plugin id.
OpenApiUi::$label public property The plugin label.
Plugin::$definition protected property The plugin definition read from the class annotation. 1
Plugin::get public function Gets the value of an annotation. Overrides AnnotationInterface::get 5
Plugin::getClass public function Gets the class of the annotated class. Overrides AnnotationInterface::getClass
Plugin::getId public function Gets the unique ID for this annotated class. Overrides AnnotationInterface::getId
Plugin::getProvider public function Gets the name of the provider of the annotated class. Overrides AnnotationInterface::getProvider
Plugin::parse protected function Parses an annotation into its definition.
Plugin::setClass public function Sets the class of the annotated class. Overrides AnnotationInterface::setClass
Plugin::setProvider public function Sets the name of the provider of the annotated class. Overrides AnnotationInterface::setProvider
Plugin::__construct public function Constructs a Plugin object. 2