Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. MigrateMessageController.php

function MigrateMessageController::title

Gets the title for the details page.

Parameters

string $migration_id: A migration ID.

Return value

\Drupal\Core\StringTranslation\TranslatableMarkup The translated title.

1 string reference to 'MigrateMessageController::title'
migrate.routing.yml in core/modules/migrate/migrate.routing.yml
core/modules/migrate/migrate.routing.yml

File

core/modules/migrate/src/Controller/MigrateMessageController.php, line 300

Class

MigrateMessageController
Provides controller methods for the Message form.

Namespace

Drupal\migrate\Controller

Code

public function title(string $migration_id) : TranslatableMarkup {
    return $this->t('Messages of %migration', [
        '%migration' => $migration_id,
    ]);
}
RSS feed
Powered by Drupal