public function EditCurrencyLocale::title in Currency 8.3
Returns the title for a currency locale edit page.
Parameters
\Drupal\currency\Entity\CurrencyLocaleInterface $currency_locale:
Return value
\Drupal\Core\StringTranslation\TranslatableMarkup
1 string reference to 'EditCurrencyLocale::title'
File
- src/
Controller/ EditCurrencyLocale.php, line 40
Class
- EditCurrencyLocale
- Handles the "edit currency locale" route.
Namespace
Drupal\currency\ControllerCode
public function title(CurrencyLocaleInterface $currency_locale) {
return $this
->t('Edit @label', array(
'@label' => $currency_locale
->label(),
));
}