BlockedIps.php in Drupal 10
Same filename and directory in other branches
Namespace
Drupal\ban\Plugin\migrate\source\d7File
core/modules/ban/src/Plugin/migrate/source/d7/BlockedIps.phpView source
<?php
namespace Drupal\ban\Plugin\migrate\source\d7;
use Drupal\migrate_drupal\Plugin\migrate\source\DrupalSqlBase;
/**
* Drupal 7 blocked IPs source from database.
*
* For available configuration keys, refer to the parent classes.
*
* @see \Drupal\migrate\Plugin\migrate\source\SqlBase
* @see \Drupal\migrate\Plugin\migrate\source\SourcePluginBase
*
* @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
Name | Description |
---|---|
BlockedIps | Drupal 7 blocked IPs source from database. |