class Adapter in Flysystem 2.0.x
Same name and namespace in other branches
- 8 src/Annotation/Adapter.php \Drupal\flysystem\Annotation\Adapter
- 3.x src/Annotation/Adapter.php \Drupal\flysystem\Annotation\Adapter
- 3.0.x src/Annotation/Adapter.php \Drupal\flysystem\Annotation\Adapter
Defines a Flysystem adapter plguin.
Plugin Namespace: Flysystem
For a working example, see \Drupal\flysystem\Flysystem\Local.
Hierarchy
- class \Drupal\Component\Annotation\Plugin implements AnnotationInterface
- class \Drupal\flysystem\Annotation\Adapter
Expanded class hierarchy of Adapter
See also
3 classes are annotated with Adapter
File
- src/
Annotation/ Adapter.php, line 18
Namespace
Drupal\flysystem\AnnotationView source
class Adapter extends Plugin {
/**
* The plugin ID.
*
* @var string
*/
public $id;
/**
* A list of extension dependencies.
*
* @var string[]
*/
public $extensions = [];
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
Adapter:: |
public | property | A list of extension dependencies. | |
Adapter:: |
public | property | The plugin ID. | |
Plugin:: |
protected | property | The plugin definition read from the class annotation. | 1 |
Plugin:: |
public | function |
Gets the value of an annotation. Overrides AnnotationInterface:: |
5 |
Plugin:: |
public | function |
Gets the class of the annotated class. Overrides AnnotationInterface:: |
|
Plugin:: |
public | function |
Gets the unique ID for this annotated class. Overrides AnnotationInterface:: |
|
Plugin:: |
public | function |
Gets the name of the provider of the annotated class. Overrides AnnotationInterface:: |
1 |
Plugin:: |
protected | function | Parses an annotation into its definition. | |
Plugin:: |
public | function |
Sets the class of the annotated class. Overrides AnnotationInterface:: |
|
Plugin:: |
public | function |
Sets the name of the provider of the annotated class. Overrides AnnotationInterface:: |
|
Plugin:: |
public | function | Constructs a Plugin object. | 2 |