class ProfileFormEmbedded in Entity Legal 3.0.x
Same name and namespace in other branches
- 8.2 src/Plugin/EntityLegal/ProfileFormEmbedded.php \Drupal\entity_legal\Plugin\EntityLegal\ProfileFormEmbedded
- 4.0.x src/Plugin/EntityLegal/ProfileFormEmbedded.php \Drupal\entity_legal\Plugin\EntityLegal\ProfileFormEmbedded
Method class for displaying a checkbox on the user register form.
Plugin annotation
@EntityLegal(
id = "form_inline",
label = @Translation("Checkbox on signup form with embedded document"),
type = "new_users",
)
Hierarchy
- class \Drupal\Component\Plugin\PluginBase implements DerivativeInspectionInterface, PluginInspectionInterface
- class \Drupal\entity_legal\EntityLegalPluginBase implements EntityLegalPluginInterface
- class \Drupal\entity_legal\Plugin\EntityLegal\ProfileForm
- class \Drupal\entity_legal\Plugin\EntityLegal\ProfileFormEmbedded
- class \Drupal\entity_legal\Plugin\EntityLegal\ProfileForm
- class \Drupal\entity_legal\EntityLegalPluginBase implements EntityLegalPluginInterface
Expanded class hierarchy of ProfileFormEmbedded
File
- src/
Plugin/ EntityLegal/ ProfileFormEmbedded.php, line 14
Namespace
Drupal\entity_legal\Plugin\EntityLegalView source
class ProfileFormEmbedded extends ProfileForm {
/**
* {@inheritdoc}
*/
public function execute(array &$context = []) {
parent::execute($context);
if (!empty($this->documents)) {
/** @var \Drupal\Core\Render\RendererInterface $renderer */
$renderer = \Drupal::service('renderer');
$view_builder = \Drupal::entityTypeManager()
->getViewBuilder(ENTITY_LEGAL_DOCUMENT_VERSION_ENTITY_NAME);
/** @var \Drupal\entity_legal\EntityLegalDocumentInterface $document */
foreach ($this->documents as $document) {
$document_markup = $view_builder
->view($document
->getPublishedVersion());
$context['form']["legal_{$document->id()}"]['#prefix'] = $renderer
->renderPlain($document_markup);
}
}
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
EntityLegalPluginBase:: |
protected | property | The legal documents that implement this plugin. | |
EntityLegalPluginBase:: |
public | function | Get all Entity Legal Documents for this plugin. | |
EntityLegalPluginBase:: |
public | function |
Constructs a \Drupal\Component\Plugin\PluginBase object. Overrides PluginBase:: |
1 |
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. | |
ProfileForm:: |
public static | function | Submit handler for user register form. | |
ProfileFormEmbedded:: |
public | function |
Execute callback for Entity Legal method plugin. Overrides ProfileForm:: |