public function BlockedIps::fields in Drupal 9
Same name and namespace in other branches
- 8 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\d7Code
public function fields() {
  return [
    'ip' => $this
      ->t('The blocked IP address.'),
  ];
}