class IpAnonSettings in IP Anonymize 8
Settings form for ip_anon module.
Hierarchy
- class \Drupal\Core\Form\FormBase implements ContainerInjectionInterface, FormInterface uses DependencySerializationTrait, LoggerChannelTrait, MessengerTrait, LinkGeneratorTrait, RedirectDestinationTrait, UrlGeneratorTrait, StringTranslationTrait
- class \Drupal\Core\Form\ConfigFormBase uses ConfigFormBaseTrait
- class \Drupal\ip_anon\Form\IpAnonSettings
- class \Drupal\Core\Form\ConfigFormBase uses ConfigFormBaseTrait
Expanded class hierarchy of IpAnonSettings
1 string reference to 'IpAnonSettings'
File
- src/
Form/ IpAnonSettings.php, line 17
Namespace
Drupal\ip_anon\FormView source
class IpAnonSettings extends ConfigFormBase {
/**
* The database connection.
*
* @var \Drupal\Core\Database\Connection
*/
protected $connection;
/**
* The date formatter service.
*
* @var \Drupal\Core\Datetime\DateFormatterInterface
*/
protected $dateFormatter;
/**
* Constructs an IpAnonSettings object.
*
* @param \Drupal\Core\Config\ConfigFactoryInterface $config_factory
* The factory for configuration objects.
* @param \Drupal\Core\Database\Connection $connection
* The database connection.
* @param \Drupal\Core\Datetime\DateFormatterInterface $date_formatter
* The date formatter service.
*/
public function __construct(ConfigFactoryInterface $config_factory, Connection $connection, DateFormatterInterface $date_formatter) {
parent::__construct($config_factory);
$this->connection = $connection;
$this->dateFormatter = $date_formatter;
}
/**
* {@inheritdoc}
*/
public static function create(ContainerInterface $container) {
return new static($container
->get('config.factory'), $container
->get('database'), $container
->get('date.formatter'));
}
/**
* {@inheritdoc}
*/
public function getFormId() {
return 'ip_anon_settings';
}
/**
* {@inheritdoc}
*/
public function submitForm(array &$form, FormStateInterface $form_state) {
$config = $this
->config('ip_anon.settings');
$config
->set('policy', $form_state
->getValue('policy'));
foreach (Element::children($form['period']) as $variable) {
$config
->set($variable, $form_state
->getValue($variable));
}
$config
->save();
parent::submitForm($form, $form_state);
}
/**
* {@inheritdoc}
*/
protected function getEditableConfigNames() {
return [
'ip_anon.settings',
];
}
/**
* {@inheritdoc}
*/
public function buildForm(array $form, FormStateInterface $form_state) {
$config = $this
->config('ip_anon.settings');
$form['policy'] = [
'#type' => 'radios',
'#title' => $this
->t('Retention policy'),
'#options' => [
$this
->t('Preserve IP addresses'),
$this
->t('Anonymize IP addresses'),
],
'#description' => $this
->t('This setting may be used to temporarily disable IP anonymization.'),
'#default_value' => $config
->get('policy'),
];
$form['period'] = [
'#type' => 'fieldset',
'#title' => $this
->t('Retention period'),
'#description' => $this
->t('IP addresses older than the retention period will be anonymized.'),
];
$intervals = [
0,
30,
60,
120,
180,
300,
600,
900,
1800,
2700,
3600,
5400,
7200,
10800,
21600,
32400,
43200,
64800,
86400,
172800,
259200,
345600,
604800,
1209600,
2419200,
4838400,
9676800,
31536000,
2147483647,
];
$options = array_combine($intervals, array_map([
$this->dateFormatter,
'formatInterval',
], $intervals));
module_load_include('inc', 'ip_anon');
foreach (ip_anon_tables() as $table => $columns) {
$form['period']["period_{$table}"] = [
'#type' => 'select',
'#title' => $this
->t('@table table', [
'@table' => $table,
]),
'#options' => $options,
'#default_value' => $config
->get("period_{$table}"),
'#description' => new FormattableMarkup('@description', [
'@description' => $this
->getTableDescription($table),
]),
];
}
return parent::buildForm($form, $form_state);
}
/**
* Returns table description.
*/
public function getTableDescription($table) {
if ($table == 'sessions') {
return drupal_get_module_schema('system', 'sessions')['description'];
}
elseif (method_exists($this->connection
->schema(), 'getComment')) {
return $this->connection
->schema()
->getComment($table);
}
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
ConfigFormBaseTrait:: |
protected | function | Retrieves a configuration object. | |
DependencySerializationTrait:: |
protected | property | An array of entity type IDs keyed by the property name of their storages. | |
DependencySerializationTrait:: |
protected | property | An array of service IDs keyed by property name used for serialization. | |
DependencySerializationTrait:: |
public | function | 1 | |
DependencySerializationTrait:: |
public | function | 2 | |
FormBase:: |
protected | property | The config factory. | 1 |
FormBase:: |
protected | property | The request stack. | 1 |
FormBase:: |
protected | property | The route match. | |
FormBase:: |
protected | function | Gets the config factory for this form. | 1 |
FormBase:: |
private | function | Returns the service container. | |
FormBase:: |
protected | function | Gets the current user. | |
FormBase:: |
protected | function | Gets the request object. | |
FormBase:: |
protected | function | Gets the route match. | |
FormBase:: |
protected | function | Gets the logger for a specific channel. | |
FormBase:: |
protected | function |
Returns a redirect response object for the specified route. Overrides UrlGeneratorTrait:: |
|
FormBase:: |
public | function | Resets the configuration factory. | |
FormBase:: |
public | function | Sets the config factory for this form. | |
FormBase:: |
public | function | Sets the request stack object to use. | |
FormBase:: |
public | function |
Form validation handler. Overrides FormInterface:: |
62 |
IpAnonSettings:: |
protected | property | The database connection. | |
IpAnonSettings:: |
protected | property | The date formatter service. | |
IpAnonSettings:: |
public | function |
Form constructor. Overrides ConfigFormBase:: |
|
IpAnonSettings:: |
public static | function |
Instantiates a new instance of this class. Overrides ConfigFormBase:: |
|
IpAnonSettings:: |
protected | function |
Gets the configuration names that will be editable. Overrides ConfigFormBaseTrait:: |
|
IpAnonSettings:: |
public | function |
Returns a unique string identifying the form. Overrides FormInterface:: |
|
IpAnonSettings:: |
public | function | Returns table description. | |
IpAnonSettings:: |
public | function |
Form submission handler. Overrides ConfigFormBase:: |
|
IpAnonSettings:: |
public | function |
Constructs an IpAnonSettings object. Overrides ConfigFormBase:: |
|
LinkGeneratorTrait:: |
protected | property | The link generator. | 1 |
LinkGeneratorTrait:: |
protected | function | Returns the link generator. | |
LinkGeneratorTrait:: |
protected | function | Renders a link to a route given a route name and its parameters. | |
LinkGeneratorTrait:: |
public | function | Sets the link generator service. | |
LoggerChannelTrait:: |
protected | property | The logger channel factory service. | |
LoggerChannelTrait:: |
protected | function | Gets the logger for a specific channel. | |
LoggerChannelTrait:: |
public | function | Injects the logger channel factory. | |
MessengerTrait:: |
protected | property | The messenger. | 29 |
MessengerTrait:: |
public | function | Gets the messenger. | 29 |
MessengerTrait:: |
public | function | Sets the messenger. | |
RedirectDestinationTrait:: |
protected | property | The redirect destination service. | 1 |
RedirectDestinationTrait:: |
protected | function | Prepares a 'destination' URL query parameter for use with \Drupal\Core\Url. | |
RedirectDestinationTrait:: |
protected | function | Returns the redirect destination service. | |
RedirectDestinationTrait:: |
public | function | Sets the redirect destination service. | |
StringTranslationTrait:: |
protected | property | The string translation service. | 1 |
StringTranslationTrait:: |
protected | function | Formats a string containing a count of items. | |
StringTranslationTrait:: |
protected | function | Returns the number of plurals supported by a given language. | |
StringTranslationTrait:: |
protected | function | Gets the string translation service. | |
StringTranslationTrait:: |
public | function | Sets the string translation service to use. | 2 |
StringTranslationTrait:: |
protected | function | Translates a string to the current language or to a given language. | |
UrlGeneratorTrait:: |
protected | property | The url generator. | |
UrlGeneratorTrait:: |
protected | function | Returns the URL generator service. | |
UrlGeneratorTrait:: |
public | function | Sets the URL generator service. | |
UrlGeneratorTrait:: |
protected | function | Generates a URL or path for a specific route based on the given parameters. |