You are here

class SalesforceMappingLocalTask in Salesforce Suite 8.3

Provides local task definitions for all entity bundles.

Hierarchy

Expanded class hierarchy of SalesforceMappingLocalTask

1 string reference to 'SalesforceMappingLocalTask'
salesforce_mapping.links.task.yml in modules/salesforce_mapping/salesforce_mapping.links.task.yml
modules/salesforce_mapping/salesforce_mapping.links.task.yml

File

modules/salesforce_mapping/src/Plugin/Derivative/SalesforceMappingLocalTask.php, line 15

Namespace

Drupal\salesforce_mapping\Plugin\Derivative
View source
class SalesforceMappingLocalTask extends DeriverBase implements ContainerDeriverInterface {
  use StringTranslationTrait;

  /**
   * The entity manager.
   *
   * @var \Drupal\Core\Entity\EntityManagerInterface
   */
  protected $entityManager;

  /**
   * Creates an SalesforceMappingLocalTask object.
   *
   * @param \Drupal\Core\Entity\EntityManagerInterface $entity_manager
   *   The entity manager.
   * @param \Drupal\Core\StringTranslation\TranslationInterface $string_translation
   *   The translation manager.
   */
  public function __construct(EntityManagerInterface $entity_manager, TranslationInterface $string_translation) {
    $this->entityManager = $entity_manager;
    $this->stringTranslation = $string_translation;
  }

  /**
   * {@inheritdoc}
   */
  public static function create(ContainerInterface $container, $base_plugin_id) {
    return new static($container
      ->get('entity.manager'), $container
      ->get('string_translation'));
  }

  /**
   * {@inheritdoc}
   */
  public function getDerivativeDefinitions($base_plugin_definition) {
    $this->derivatives = [];
    foreach ($this->entityManager
      ->getDefinitions() as $entity_type_id => $entity_type) {
      if (!($has_canonical_path = $entity_type
        ->hasLinkTemplate('salesforce'))) {
        continue;
      }
      $this->derivatives["{$entity_type_id}.salesforce_tab"] = [
        'route_name' => "entity.{$entity_type_id}.salesforce",
        'title' => $this
          ->t('Salesforce'),
        'base_route' => "entity.{$entity_type_id}.canonical",
        'weight' => 200,
      ] + $base_plugin_definition;
      $this->derivatives["{$entity_type_id}.salesforce"] = [
        'route_name' => "entity.{$entity_type_id}.salesforce",
        'weight' => 200,
        'title' => $this
          ->t('View'),
        'parent_id' => "salesforce_mapping.entities:{$entity_type_id}.salesforce_tab",
      ] + $base_plugin_definition;
    }
    return $this->derivatives;
  }

}

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
SalesforceMappingLocalTask::$entityManager protected property The entity manager.
SalesforceMappingLocalTask::create public static function Creates a new class instance. Overrides ContainerDeriverInterface::create
SalesforceMappingLocalTask::getDerivativeDefinitions public function Gets the definition of all derivatives of a base plugin. Overrides DeriverBase::getDerivativeDefinitions
SalesforceMappingLocalTask::__construct public function Creates an SalesforceMappingLocalTask object.
StringTranslationTrait::$stringTranslation protected property The string translation service. 1
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.