You are here

Popup.php in Entity Legal 8

File

src/Plugin/EntityLegal/AcceptanceMethod/Popup.php
View source
<?php

/**
 * @file
 * Contains \Drupal\entity_legal\Plugin\EntityLegal\AcceptanceMethod\Popup.
 */
namespace Drupal\entity_legal\Plugin\EntityLegal\AcceptanceMethod;

use Drupal\entity_legal\AcceptanceMethod\AcceptanceMethodInterface;

/**
 * Plugin implementation of the 'message' acceptance method.
 *
 * @AcceptanceMethod(
 *   id = "popup",
 *   label = @Translation("Popup on all pages until accepted"),
 *   new_users = false,
 *   existing_users = true,
 * )
 */
class Popup implements AcceptanceMethodInterface {

}

Classes

Namesort descending Description
Popup Plugin implementation of the 'message' acceptance method.