You are here

protected property Migration::$statusLabels in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/migrate/src/Entity/Migration.php \Drupal\migrate\Entity\Migration::statusLabels

Labels corresponding to each defined status.

Type: array

File

core/modules/migrate/src/Entity/Migration.php, line 246
Contains \Drupal\migrate\Entity\Migration.

Class

Migration
Defines the Migration entity.

Namespace

Drupal\migrate\Entity

Code

protected $statusLabels = [
  self::STATUS_IDLE => 'Idle',
  self::STATUS_IMPORTING => 'Importing',
  self::STATUS_ROLLING_BACK => 'Rolling back',
  self::STATUS_STOPPING => 'Stopping',
  self::STATUS_DISABLED => 'Disabled',
];