abstract class TipPluginBase in Zircon Profile 8.0
Same name and namespace in other branches
- 8 core/modules/tour/src/TipPluginBase.php \Drupal\tour\TipPluginBase
Defines a base tour item implementation.
Hierarchy
- class \Drupal\Component\Plugin\PluginBase implements DerivativeInspectionInterface, PluginInspectionInterface
- class \Drupal\Core\Plugin\PluginBase uses DependencySerializationTrait, StringTranslationTrait
- class \Drupal\tour\TipPluginBase implements TipPluginInterface
- class \Drupal\Core\Plugin\PluginBase uses DependencySerializationTrait, StringTranslationTrait
Expanded class hierarchy of TipPluginBase
See also
\Drupal\tour\TipPluginInterface
2 files declare their use of TipPluginBase
- TipPluginImage.php in core/
modules/ tour/ tests/ tour_test/ src/ Plugin/ tour/ tip/ TipPluginImage.php - Contains \Drupal\tour_test\Plugin\tour\tip\TipPluginImage.
- TipPluginText.php in core/
modules/ tour/ src/ Plugin/ tour/ tip/ TipPluginText.php - Contains \Drupal\tour\Plugin\tour\tip\TipPluginText.
File
- core/
modules/ tour/ src/ TipPluginBase.php, line 20 - Contains \Drupal\tour\TipPluginBase.
Namespace
Drupal\tourView source
abstract class TipPluginBase extends PluginBase implements TipPluginInterface {
/**
* The label which is used for render of this tip.
*
* @var string
*/
protected $label;
/**
* Allows tips to take more priority that others.
*
* @var string
*/
protected $weight;
/**
* The attributes that will be applied to the markup of this tip.
*
* @var array
*/
protected $attributes;
/**
* {@inheritdoc}
*/
public function id() {
return $this
->get('id');
}
/**
* {@inheritdoc}
*/
public function getLabel() {
return $this
->get('label');
}
/**
* {@inheritdoc}
*/
public function getWeight() {
return $this
->get('weight');
}
/**
* {@inheritdoc}
*/
public function getAttributes() {
return $this
->get('attributes') ?: [];
}
/**
* {@inheritdoc}
*/
public function get($key) {
if (!empty($this->configuration[$key])) {
return $this->configuration[$key];
}
}
/**
* {@inheritdoc}
*/
public function set($key, $value) {
$this->configuration[$key] = $value;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
DependencySerializationTrait:: |
protected | property | An array of service IDs keyed by property name used for serialization. | |
DependencySerializationTrait:: |
public | function | 1 | |
DependencySerializationTrait:: |
public | function | 2 | |
PluginBase:: |
protected | property | Configuration information passed into the plugin. | 2 |
PluginBase:: |
protected | property | The plugin implementation definition. | |
PluginBase:: |
protected | property | The plugin_id. | |
PluginBase:: |
constant | A string which is used to separate base plugin IDs from the derivative ID. | ||
PluginBase:: |
public | function |
Gets the base_plugin_id of the plugin instance. Overrides DerivativeInspectionInterface:: |
|
PluginBase:: |
public | function |
Gets the derivative_id of the plugin instance. Overrides DerivativeInspectionInterface:: |
|
PluginBase:: |
public | function |
Gets the definition of the plugin implementation. Overrides PluginInspectionInterface:: |
|
PluginBase:: |
public | function |
Gets the plugin_id of the plugin instance. Overrides PluginInspectionInterface:: |
|
PluginBase:: |
public | function | Constructs a Drupal\Component\Plugin\PluginBase object. | 69 |
StringTranslationTrait:: |
protected | property | The string translation service. | |
StringTranslationTrait:: |
protected | function | Formats a string containing a count of items. | |
StringTranslationTrait:: |
protected | function | Returns the number of plurals supported by a given language. | |
StringTranslationTrait:: |
protected | function | Gets the string translation service. | |
StringTranslationTrait:: |
public | function | Sets the string translation service to use. | 2 |
StringTranslationTrait:: |
protected | function | Translates a string to the current language or to a given language. | |
TipPluginBase:: |
protected | property | The attributes that will be applied to the markup of this tip. | |
TipPluginBase:: |
protected | property | The label which is used for render of this tip. | |
TipPluginBase:: |
protected | property | Allows tips to take more priority that others. | |
TipPluginBase:: |
public | function |
Used for returning values by key. Overrides TipPluginInterface:: |
|
TipPluginBase:: |
public | function |
Returns an array of attributes for the tip wrapper. Overrides TipPluginInterface:: |
1 |
TipPluginBase:: |
public | function |
Returns label of the tip. Overrides TipPluginInterface:: |
|
TipPluginBase:: |
public | function |
Returns weight of the tip. Overrides TipPluginInterface:: |
|
TipPluginBase:: |
public | function |
Returns id of the tip. Overrides TipPluginInterface:: |
|
TipPluginBase:: |
public | function |
Used for returning values by key. Overrides TipPluginInterface:: |
|
TipPluginInterface:: |
public | function | Returns a renderable array. | 2 |