class Tip in Drupal 8
Same name and namespace in other branches
- 9 core/modules/tour/src/Annotation/Tip.php \Drupal\tour\Annotation\Tip
Defines a tour item annotation object.
Plugin Namespace: Plugin\tour\tip
For a working example, see \Drupal\tour\Plugin\tour\tip\TipPluginText
Hierarchy
- class \Drupal\Component\Annotation\Plugin implements AnnotationInterface
- class \Drupal\tour\Annotation\Tip
Expanded class hierarchy of Tip
See also
\Drupal\tour\TipPluginInterface
Related topics
2 classes are annotated with Tip
- TipPluginImage in core/
modules/ tour/ tests/ tour_test/ src/ Plugin/ tour/ tip/ TipPluginImage.php - Displays an image as a tip.
- TipPluginText in core/
modules/ tour/ src/ Plugin/ tour/ tip/ TipPluginText.php - Displays some text as a tip.
File
- core/
modules/ tour/ src/ Annotation/ Tip.php, line 21
Namespace
Drupal\tour\AnnotationView source
class Tip extends Plugin {
/**
* The plugin ID.
*
* @var string
*/
public $id;
/**
* The title of the plugin.
*
* @var \Drupal\Core\Annotation\Translation
*
* @ingroup plugin_translatable
*/
public $title;
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
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:: |
|
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 |
Tip:: |
public | property | The plugin ID. | |
Tip:: |
public | property | The title of the plugin. |