You are here

public function ConfigNamesMapper::getDeleteRoute in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/config_translation/src/ConfigNamesMapper.php \Drupal\config_translation\ConfigNamesMapper::getDeleteRoute()
  2. 10 core/modules/config_translation/src/ConfigNamesMapper.php \Drupal\config_translation\ConfigNamesMapper::getDeleteRoute()

Returns the route object for the translation deletion route.

Return value

\Symfony\Component\Routing\Route The route object for the translation page.

Overrides ConfigMapperInterface::getDeleteRoute

File

core/modules/config_translation/src/ConfigNamesMapper.php, line 346

Class

ConfigNamesMapper
Configuration mapper base implementation.

Namespace

Drupal\config_translation

Code

public function getDeleteRoute() {
  $route = new Route($this
    ->getBaseRoute()
    ->getPath() . '/translate/{langcode}/delete', [
    '_form' => '\\Drupal\\config_translation\\Form\\ConfigTranslationDeleteForm',
    'plugin_id' => $this
      ->getPluginId(),
  ], [
    '_config_translation_form_access' => 'TRUE',
  ]);
  $this
    ->processRoute($route);
  return $route;
}