You are here

ProfileFormInline.php in Entity Legal 8

File

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

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

use Drupal\entity_legal\AcceptanceMethod\AcceptanceMethodInterface;

/**
 * Plugin implementation of the 'profile_form_inline' acceptance method.
 *
 * @AcceptanceMethod(
 *   id = "profile_form_inline",
 *   label = @Translation("Embedded document on user profile/user signup form"),
 *   new_users = true,
 *   existing_users = true,
 * )
 */
class ProfileFormInline extends ProfileForm {

}

Classes

Namesort descending Description
ProfileFormInline Plugin implementation of the 'profile_form_inline' acceptance method.