public function NotificationWidgetUpdateResource::__construct in Notifications widget 8
Constructs a Drupal\rest\Plugin\ResourceBase object.
Parameters
array $configuration: A configuration array containing information about the plugin instance.
string $plugin_id: The plugin_id for the plugin instance.
mixed $plugin_definition: The plugin implementation definition.
array $serializer_formats: The available serialization formats.
\Psr\Log\LoggerInterface $logger: A logger instance.
\Drupal\Core\Session\AccountProxyInterface $current_user: A current user instance.
\Drupal\Core\Database\Connection $database: Database Connection.
Overrides ResourceBase::__construct
File
- src/
Plugin/ rest/ resource/ NotificationWidgetUpdateResource.php, line 58
Class
- NotificationWidgetUpdateResource
- Provides a resource to get update the status of notification items.
Namespace
Drupal\notifications_widget\Plugin\rest\resourceCode
public function __construct(array $configuration, $plugin_id, $plugin_definition, array $serializer_formats, LoggerInterface $logger, AccountProxyInterface $current_user, Connection $database) {
parent::__construct($configuration, $plugin_id, $plugin_definition, $serializer_formats, $logger);
$this->currentUser = $current_user;
$this->database = $database;
}