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\ControllerCode
public function title(string $migration_id) : TranslatableMarkup {
  return $this->t('Messages of %migration', [
    '%migration' => $migration_id,
  ]);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.