You are here

class EntityKmlDeriver in farmOS 2.x

Provides an action deriver for the KML action.

Hierarchy

Expanded class hierarchy of EntityKmlDeriver

See also

\Drupal\farm_kml\Plugin\Action\EntityKml

File

modules/core/kml/src/Plugin/Action/Derivative/EntityKmlDeriver.php, line 13

Namespace

Drupal\farm_kml\Plugin\Action\Derivative
View source
class EntityKmlDeriver extends EntityActionDeriverBase {

  /**
   * {@inheritdoc}
   */
  public function getDerivativeDefinitions($base_plugin_definition) {
    if (empty($this->derivatives)) {
      $definitions = [];
      foreach ($this
        ->getApplicableEntityTypes() as $entity_type_id => $entity_type) {
        $definition = $base_plugin_definition;
        $definition['type'] = $entity_type_id;
        $definition['label'] = $this
          ->t('Export @entity_type KML', [
          '@entity_type' => $entity_type
            ->getSingularLabel(),
        ]);
        $definitions[$entity_type_id] = $definition;
      }
      $this->derivatives = $definitions;
    }
    return parent::getDerivativeDefinitions($base_plugin_definition);
  }

  /**
   * {@inheritdoc}
   */
  protected function isApplicable(EntityTypeInterface $entity_type) {
    return in_array($entity_type
      ->id(), [
      'log',
      'asset',
    ]);
  }

}

Members

Namesort descending Modifiers Type Description Overrides
DeriverBase::$derivatives protected property List of derivative definitions. 1
DeriverBase::getDerivativeDefinition public function Gets the definition of a derivative plugin. Overrides DeriverInterface::getDerivativeDefinition
EntityActionDeriverBase::$entityTypeManager protected property The entity type manager.
EntityActionDeriverBase::create public static function Creates a new class instance. Overrides ContainerDeriverInterface::create
EntityActionDeriverBase::getApplicableEntityTypes protected function Gets a list of applicable entity types.
EntityActionDeriverBase::__construct public function Constructs a new EntityActionDeriverBase object.
EntityKmlDeriver::getDerivativeDefinitions public function Gets the definition of all derivatives of a base plugin. Overrides EntityActionDeriverBase::getDerivativeDefinitions
EntityKmlDeriver::isApplicable protected function Indicates whether the deriver can be used for the provided entity type. Overrides EntityActionDeriverBase::isApplicable
StringTranslationTrait::$stringTranslation protected property The string translation service. 4
StringTranslationTrait::formatPlural protected function Formats a string containing a count of items.
StringTranslationTrait::getNumberOfPlurals protected function Returns the number of plurals supported by a given language.
StringTranslationTrait::getStringTranslation protected function Gets the string translation service.
StringTranslationTrait::setStringTranslation public function Sets the string translation service to use. 2
StringTranslationTrait::t protected function Translates a string to the current language or to a given language.