class BasicConsentStorage in EU Cookie Compliance (GDPR Compliance) 2.0.x
Same name and namespace in other branches
- 8 src/Plugin/ConsentStorage/BasicConsentStorage.php \Drupal\eu_cookie_compliance\Plugin\ConsentStorage\BasicConsentStorage
Provides a database storage for cookie consents.
Plugin annotation
@ConsentStorage(
id = "basic",
name = @Translation("Basic storage"),
description = @Translation("Basic storage")
)
Hierarchy
- class \Drupal\Component\Plugin\PluginBase implements DerivativeInspectionInterface, PluginInspectionInterface
- class \Drupal\Core\Plugin\PluginBase uses DependencySerializationTrait, MessengerTrait, StringTranslationTrait
- class \Drupal\eu_cookie_compliance\Plugin\ConsentStorageBase implements ConsentStorageInterface
- class \Drupal\eu_cookie_compliance\Plugin\ConsentStorage\BasicConsentStorage implements ContainerFactoryPluginInterface
- class \Drupal\eu_cookie_compliance\Plugin\ConsentStorageBase implements ConsentStorageInterface
- class \Drupal\Core\Plugin\PluginBase uses DependencySerializationTrait, MessengerTrait, StringTranslationTrait
Expanded class hierarchy of BasicConsentStorage
File
- src/
Plugin/ ConsentStorage/ BasicConsentStorage.php, line 20
Namespace
Drupal\eu_cookie_compliance\Plugin\ConsentStorageView source
class BasicConsentStorage extends ConsentStorageBase implements ContainerFactoryPluginInterface {
/**
* The time service.
*
* @var \Drupal\Component\Datetime\TimeInterface
*/
protected $time;
/**
* BasicConsentStorage constructor.
*
* @param array $configuration
* A configuration array containing information about the plugin instance.
* @param string $plugin_id
* The plugin_id for the plugin instance.
* @param mixed $plugin_definition
* The plugin implementation definition.
* @param \Drupal\Core\Config\ConfigFactoryInterface $config_factory
* The factory for configuration objects.
* @param \Drupal\Component\Datetime\TimeInterface $time
* The time service.
*/
public function __construct(array $configuration, $plugin_id, $plugin_definition, ConfigFactoryInterface $config_factory, TimeInterface $time) {
parent::__construct($configuration, $plugin_id, $plugin_definition, $config_factory);
$this->time = $time;
}
/**
* {@inheritdoc}
*/
public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition) {
return new static($configuration, $plugin_id, $plugin_definition, $container
->get('config.factory'), $container
->get('datetime.time'));
}
/**
* {@inheritdoc}
*/
public function registerConsent($consent_type) {
$revision_id = $this
->getCurrentPolicyNodeRevision();
$timestamp = $this->time
->getRequestTime();
$ip_address = \Drupal::request()
->getClientIp();
$uid = \Drupal::currentUser()
->id();
\Drupal::database()
->insert('eu_cookie_compliance_basic_consent')
->fields([
'uid' => $uid,
'ip_address' => $ip_address,
'timestamp' => $timestamp,
'revision_id' => $revision_id ? $revision_id : 0,
'consent_type' => $consent_type,
])
->execute();
return TRUE;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
BasicConsentStorage:: |
protected | property | The time service. | |
BasicConsentStorage:: |
public static | function |
Creates an instance of the plugin. Overrides ConsentStorageBase:: |
|
BasicConsentStorage:: |
public | function |
Register consent. Overrides ConsentStorageBase:: |
|
BasicConsentStorage:: |
public | function |
BasicConsentStorage constructor. Overrides ConsentStorageBase:: |
|
ConsentStorageBase:: |
protected | property | The config factory. | |
ConsentStorageBase:: |
public | function |
Returns the consent storage description. Overrides ConsentStorageInterface:: |
|
ConsentStorageBase:: |
public | function | Get the current revision of the privacy policy node. | |
ConsentStorageBase:: |
public | function | Get status. | |
ConsentStorageBase:: |
public | function |
Returns the consent storage label. Overrides ConsentStorageInterface:: |
|
DependencySerializationTrait:: |
protected | property | ||
DependencySerializationTrait:: |
protected | property | ||
DependencySerializationTrait:: |
public | function | 2 | |
DependencySerializationTrait:: |
public | function | 2 | |
MessengerTrait:: |
protected | property | The messenger. | 27 |
MessengerTrait:: |
public | function | Gets the messenger. | 27 |
MessengerTrait:: |
public | function | Sets the messenger. | |
PluginBase:: |
protected | property | Configuration information passed into the plugin. | 1 |
PluginBase:: |
protected | property | The plugin implementation definition. | 1 |
PluginBase:: |
protected | property | The plugin_id. | |
PluginBase:: |
constant | A string which is used to separate base plugin IDs from the derivative ID. | ||
PluginBase:: |
public | function |
Gets the base_plugin_id of the plugin instance. Overrides DerivativeInspectionInterface:: |
|
PluginBase:: |
public | function |
Gets the derivative_id of the plugin instance. Overrides DerivativeInspectionInterface:: |
|
PluginBase:: |
public | function |
Gets the definition of the plugin implementation. Overrides PluginInspectionInterface:: |
2 |
PluginBase:: |
public | function |
Gets the plugin_id of the plugin instance. Overrides PluginInspectionInterface:: |
|
PluginBase:: |
public | function | Determines if the plugin is configurable. | |
StringTranslationTrait:: |
protected | property | The string translation service. | 4 |
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. |