You are here

TourTipPluginDefinitionDecorator.php in Plugin 8.2

File

src/PluginDefinition/TourTipPluginDefinitionDecorator.php
View source
<?php

namespace Drupal\plugin\PluginDefinition;


/**
 * Provides a tour tip plugin definition decorator.
 *
 * @ingroup Plugin
 */
class TourTipPluginDefinitionDecorator extends ArrayPluginDefinitionDecorator {

  /**
   * {@inheritdoc}
   */
  public function setLabel($label) {
    $this->arrayDefinition['title'] = $label;
    return $this;
  }

  /**
   * {@inheritdoc}
   */
  public function getLabel() {
    return isset($this->arrayDefinition['title']) ? $this->arrayDefinition['title'] : NULL;
  }

}

Classes

Namesort descending Description
TourTipPluginDefinitionDecorator Provides a tour tip plugin definition decorator.