You are here

class SalesforceMappedObjectAddLocalAction in Salesforce Suite 5.0.x

Same name and namespace in other branches
  1. 8.4 modules/salesforce_mapping_ui/src/Plugin/Menu/LocalAction/SalesforceMappedObjectAddLocalAction.php \Drupal\salesforce_mapping_ui\Plugin\Menu\LocalAction\SalesforceMappedObjectAddLocalAction

Local action for salesforce mapped objects.

Hierarchy

Expanded class hierarchy of SalesforceMappedObjectAddLocalAction

1 string reference to 'SalesforceMappedObjectAddLocalAction'
salesforce_mapping_ui.links.action.yml in modules/salesforce_mapping_ui/salesforce_mapping_ui.links.action.yml
modules/salesforce_mapping_ui/salesforce_mapping_ui.links.action.yml

File

modules/salesforce_mapping_ui/src/Plugin/Menu/LocalAction/SalesforceMappedObjectAddLocalAction.php, line 13

Namespace

Drupal\salesforce_mapping_ui\Plugin\Menu\LocalAction
View source
class SalesforceMappedObjectAddLocalAction extends LocalActionDefault {

  /**
   * {@inheritdoc}
   */
  public function getTitle(Request $request = NULL) {

    // @TODO unclear how to translate this, but needs to be translated:
    return 'Create Mapped Object';
  }

  /**
   * {@inheritdoc}
   */
  public function getOptions(RouteMatchInterface $route_match) {

    // If our local action is appearing contextually on an entity, provide
    // contextual entity paramaters to the add form link.
    $options = parent::getOptions($route_match);
    $entity_type_id = $route_match
      ->getRouteObject()
      ->getOption('_salesforce_entity_type_id');
    if (empty($entity_type_id)) {
      return $options;
    }
    $entity = $route_match
      ->getParameter($entity_type_id);
    if (!$entity || !$entity instanceof EntityInterface) {
      return $options;
    }
    $options['query'] = [
      'entity_type_id' => $entity_type_id,
      'entity_id' => $entity
        ->id(),
    ];
    return $options;
  }

}

Members

Namesort descending Modifiers Type Description Overrides
DependencySerializationTrait::$_entityStorages protected property
DependencySerializationTrait::$_serviceIds protected property
DependencySerializationTrait::__sleep public function 2
DependencySerializationTrait::__wakeup public function 2
LocalActionDefault::$routeProvider protected property The route provider to load routes by name.
LocalActionDefault::create public static function Creates an instance of the plugin. Overrides ContainerFactoryPluginInterface::create 2
LocalActionDefault::getCacheContexts public function The cache contexts associated with this object. Overrides CacheableDependencyInterface::getCacheContexts
LocalActionDefault::getCacheMaxAge public function The maximum age for which this object may be cached. Overrides CacheableDependencyInterface::getCacheMaxAge
LocalActionDefault::getCacheTags public function The cache tags associated with this object. Overrides CacheableDependencyInterface::getCacheTags
LocalActionDefault::getRouteName public function Get the route name from the settings. Overrides LocalActionInterface::getRouteName
LocalActionDefault::getRouteParameters public function Returns the route parameters needed to render a link for the local action. Overrides LocalActionInterface::getRouteParameters
LocalActionDefault::getWeight public function Returns the weight for the local action. Overrides LocalActionInterface::getWeight
LocalActionDefault::__construct public function Constructs a LocalActionDefault object. Overrides PluginBase::__construct 2
PluginBase::$configuration protected property Configuration information passed into the plugin. 1
PluginBase::$pluginDefinition protected property The plugin implementation definition. 1
PluginBase::$pluginId protected property The plugin_id.
PluginBase::DERIVATIVE_SEPARATOR constant A string which is used to separate base plugin IDs from the derivative ID.
PluginBase::getBaseId public function Gets the base_plugin_id of the plugin instance. Overrides DerivativeInspectionInterface::getBaseId
PluginBase::getDerivativeId public function Gets the derivative_id of the plugin instance. Overrides DerivativeInspectionInterface::getDerivativeId
PluginBase::getPluginDefinition public function Gets the definition of the plugin implementation. Overrides PluginInspectionInterface::getPluginDefinition 2
PluginBase::getPluginId public function Gets the plugin_id of the plugin instance. Overrides PluginInspectionInterface::getPluginId
PluginBase::isConfigurable public function Determines if the plugin is configurable.
SalesforceMappedObjectAddLocalAction::getOptions public function Returns options for rendering a link for the local action. Overrides LocalActionDefault::getOptions
SalesforceMappedObjectAddLocalAction::getTitle public function Returns the localized title to be shown for this action. Overrides LocalActionDefault::getTitle