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

Breadcrumb

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

function Migration::getStatusLabel

Overrides MigrationInterface::getStatusLabel

File

core/modules/migrate/src/Plugin/Migration.php, line 532

Class

Migration
Defines the Migration plugin.

Namespace

Drupal\migrate\Plugin

Code

public function getStatusLabel() {
    $status = $this->getStatus();
    if (isset($this->statusLabels[$status])) {
        return $this->statusLabels[$status];
    }
    else {
        return '';
    }
}
RSS feed
Powered by Drupal