You are here

class CurrencyRouteProvider in Price 3.x

Same name and namespace in other branches
  1. 8 src/CurrencyRouteProvider.php \Drupal\price\CurrencyRouteProvider
  2. 2.0.x src/CurrencyRouteProvider.php \Drupal\price\CurrencyRouteProvider
  3. 2.x src/CurrencyRouteProvider.php \Drupal\price\CurrencyRouteProvider
  4. 3.0.x src/CurrencyRouteProvider.php \Drupal\price\CurrencyRouteProvider

Provides routes for the Currency entity.

Hierarchy

Expanded class hierarchy of CurrencyRouteProvider

File

src/CurrencyRouteProvider.php, line 11

Namespace

Drupal\price
View source
class CurrencyRouteProvider extends DefaultHtmlRouteProvider {

  /**
   * {@inheritdoc}
   */
  protected function getAddFormRoute(EntityTypeInterface $entity_type) {
    $route = parent::getAddFormRoute($entity_type);

    // Replace the "Add currency" title with "Add custom currency".
    // The t() function is used to ensure the string is picked up for
    // translation, even though _title is supposed to be untranslated.
    $route
      ->setDefault('_title_callback', '');
    $route
      ->setDefault('_title', t('Add custom currency')
      ->getUntranslatedString());
    return $route;
  }

}

Members

Namesort descending Modifiers Type Description Overrides
CurrencyRouteProvider::getAddFormRoute protected function Gets the add-form route. Overrides DefaultHtmlRouteProvider::getAddFormRoute
DefaultHtmlRouteProvider::$entityFieldManager protected property The entity field manager.
DefaultHtmlRouteProvider::$entityTypeManager protected property The entity type manager.
DefaultHtmlRouteProvider::createInstance public static function Instantiates a new instance of this entity handler. Overrides EntityHandlerInterface::createInstance 1
DefaultHtmlRouteProvider::getAddPageRoute protected function Gets the add page route. 2
DefaultHtmlRouteProvider::getCanonicalRoute protected function Gets the canonical route. 3
DefaultHtmlRouteProvider::getCollectionRoute protected function Gets the collection route. 2
DefaultHtmlRouteProvider::getDeleteFormRoute protected function Gets the delete-form route. 1
DefaultHtmlRouteProvider::getDeleteMultipleFormRoute protected function Returns the delete multiple form route. 1
DefaultHtmlRouteProvider::getEditFormRoute protected function Gets the edit-form route. 1
DefaultHtmlRouteProvider::getEntityTypeIdKeyType protected function Gets the type of the ID key for a given entity type. 1
DefaultHtmlRouteProvider::getRoutes public function Provides routes for entities. Overrides EntityRouteProviderInterface::getRoutes 1
DefaultHtmlRouteProvider::__construct public function Constructs a new DefaultHtmlRouteProvider. 1