You are here

public function BlockedIps::fields in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/ban/src/Plugin/migrate/source/d7/BlockedIps.php \Drupal\ban\Plugin\migrate\source\d7\BlockedIps::fields()
  2. 9 core/modules/ban/src/Plugin/migrate/source/d7/BlockedIps.php \Drupal\ban\Plugin\migrate\source\d7\BlockedIps::fields()

Returns available fields on the source.

Return value

array Available fields in the source, keys are the field machine names as used in field mappings, values are descriptions.

Overrides MigrateSourceInterface::fields

File

core/modules/ban/src/Plugin/migrate/source/d7/BlockedIps.php, line 32

Class

BlockedIps
Drupal 7 blocked IPs source from database.

Namespace

Drupal\ban\Plugin\migrate\source\d7

Code

public function fields() {
  return [
    'ip' => $this
      ->t('The blocked IP address.'),
  ];
}