BlockedIps.php
Namespace
Drupal\ban\Plugin\migrate\source\d7File
- 
              core/
modules/ ban/ src/ Plugin/ migrate/ source/ d7/ BlockedIps.php  
View source
<?php
namespace Drupal\ban\Plugin\migrate\source\d7;
use Drupal\migrate_drupal\Plugin\migrate\source\DrupalSqlBase;
/**
 * Drupal 7 blocked IPs from database.
 *
 * @MigrateSource(
 *   id = "d7_blocked_ips",
 *   source_module = "system"
 * )
 */
class BlockedIps extends DrupalSqlBase {
  
  /**
   * {@inheritdoc}
   */
  public function query() {
    return $this->select('blocked_ips', 'bi')
      ->fields('bi', [
      'ip',
    ]);
  }
  
  /**
   * {@inheritdoc}
   */
  public function fields() {
    return [
      'ip' => $this->t('The blocked IP address.'),
    ];
  }
  
  /**
   * {@inheritdoc}
   */
  public function getIds() {
    return [
      'ip' => [
        'type' => 'string',
      ],
    ];
  }
}
Classes
| Title | Deprecated | Summary | 
|---|---|---|
| BlockedIps | Drupal 7 blocked IPs from database. | 
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.