You are here

protected function MigrationListBuilder::handleThrowable in Migrate Tools 8.5

Derive the row data.

Parameters

array $row: The table row.

1 call to MigrationListBuilder::handleThrowable()
MigrationListBuilder::buildRow in src/Controller/MigrationListBuilder.php
Builds a row for a migration plugin.

File

src/Controller/MigrationListBuilder.php, line 226

Class

MigrationListBuilder
Provides a listing of migration entities in a given group.

Namespace

Drupal\migrate_tools\Controller

Code

protected function handleThrowable(array &$row) {
  $row['status'] = $this
    ->t('No data found');
  $row['total'] = $this
    ->t('N/A');
  $row['imported'] = $this
    ->t('N/A');
  $row['unprocessed'] = $this
    ->t('N/A');
  $row['messages'] = $this
    ->t('N/A');
  $row['last_imported'] = $this
    ->t('N/A');
  $row['operations'] = $this
    ->t('N/A');
}