abstract class VariantPluginConfigureBlockFormBase in Page Manager 8
Same name and namespace in other branches
- 8.4 page_manager_ui/src/Form/VariantPluginConfigureBlockFormBase.php \Drupal\page_manager_ui\Form\VariantPluginConfigureBlockFormBase
Provides a base form for configuring a block as part of a variant.
Hierarchy
- class \Drupal\Core\Form\FormBase implements ContainerInjectionInterface, FormInterface uses DependencySerializationTrait, LoggerChannelTrait, MessengerTrait, LinkGeneratorTrait, RedirectDestinationTrait, UrlGeneratorTrait, StringTranslationTrait
- class \Drupal\page_manager_ui\Form\VariantPluginConfigureBlockFormBase uses ContextAwarePluginAssignmentTrait
Expanded class hierarchy of VariantPluginConfigureBlockFormBase
File
- page_manager_ui/
src/ Form/ VariantPluginConfigureBlockFormBase.php, line 23 - Contains \Drupal\page_manager_ui\Form\VariantPluginConfigureBlockFormBase.
Namespace
Drupal\page_manager_ui\FormView source
abstract class VariantPluginConfigureBlockFormBase extends FormBase {
use ContextAwarePluginAssignmentTrait;
/**
* Tempstore factory.
*
* @var \Drupal\user\SharedTempStoreFactory
*/
protected $tempstore;
/**
* The variant plugin.
*
* @var \Drupal\page_manager\Plugin\DisplayVariant\PageBlockDisplayVariant
*/
protected $variantPlugin;
/**
* The plugin being configured.
*
* @var \Drupal\Core\Block\BlockPluginInterface
*/
protected $block;
/**
* Constructs a new VariantPluginConfigureBlockFormBase.
*
* @param \Drupal\user\SharedTempStoreFactory $tempstore
* The tempstore factory.
*/
public function __construct(SharedTempStoreFactory $tempstore) {
$this->tempstore = $tempstore;
}
/**
* {@inheritdoc}
*/
public static function create(ContainerInterface $container) {
return new static($container
->get('user.shared_tempstore'));
}
/**
* Get the tempstore id.
*
* @return string
*/
protected function getTempstoreId() {
return 'page_manager.block_display';
}
/**
* Get the tempstore.
*
* @return \Drupal\user\SharedTempStore
*/
protected function getTempstore() {
return $this->tempstore
->get($this
->getTempstoreId());
}
/**
* Prepares the block plugin based on the block ID.
*
* @param string $block_id
* Either a block ID, or the plugin ID used to create a new block.
*
* @return \Drupal\Core\Block\BlockPluginInterface
* The block plugin.
*/
protected abstract function prepareBlock($block_id);
/**
* Returns the text to use for the submit button.
*
* @return string
* The submit button text.
*/
protected abstract function submitText();
/**
* {@inheritdoc}
*/
public function buildForm(array $form, FormStateInterface $form_state, $block_display = NULL, $block_id = NULL) {
$cached_values = $this->tempstore
->get('page_manager.block_display')
->get($block_display);
/** @var \Drupal\page_manager\Plugin\DisplayVariant\PageBlockDisplayVariant $variant_plugin */
$this->variantPlugin = $cached_values['plugin'];
// Rehydrate the contexts on this end.
$contexts = [];
/**
* @var string $context_name
* @var \Drupal\Core\Plugin\Context\ContextDefinitionInterface $context_definition
*/
foreach ($cached_values['contexts'] as $context_name => $context_definition) {
$contexts[$context_name] = new Context($context_definition);
}
$this->variantPlugin
->setContexts($contexts);
$this->block = $this
->prepareBlock($block_id);
$form_state
->set('variant_id', $this
->getVariantPlugin()
->id());
$form_state
->set('block_id', $this->block
->getConfiguration()['uuid']);
$form['#tree'] = TRUE;
$form['settings'] = $this->block
->buildConfigurationForm([], $form_state);
$form['settings']['id'] = [
'#type' => 'value',
'#value' => $this->block
->getPluginId(),
];
$form['region'] = [
'#title' => $this
->t('Region'),
'#type' => 'select',
'#options' => $this
->getVariantPlugin()
->getRegionNames(),
'#default_value' => $this
->getVariantPlugin()
->getRegionAssignment($this->block
->getConfiguration()['uuid']),
'#required' => TRUE,
];
if ($this->block instanceof ContextAwarePluginInterface) {
$form['context_mapping'] = $this
->addContextAssignmentElement($this->block, $this
->getVariantPlugin()
->getContexts());
}
$form['actions']['submit'] = [
'#type' => 'submit',
'#value' => $this
->submitText(),
'#button_type' => 'primary',
];
return $form;
}
/**
* {@inheritdoc}
*/
public function validateForm(array &$form, FormStateInterface $form_state) {
// The page might have been serialized, resulting in a new variant
// collection. Refresh the block object.
$this->block = $this
->getVariantPlugin()
->getBlock($form_state
->get('block_id'));
$settings = (new FormState())
->setValues($form_state
->getValue('settings'));
// Call the plugin validate handler.
$this->block
->validateConfigurationForm($form, $settings);
// Update the original form values.
$form_state
->setValue('settings', $settings
->getValues());
}
/**
* {@inheritdoc}
*/
public function submitForm(array &$form, FormStateInterface $form_state) {
$settings = (new FormState())
->setValues($form_state
->getValue('settings'));
// Call the plugin submit handler.
$this->block
->submitConfigurationForm($form, $settings);
// Update the original form values.
$form_state
->setValue('settings', $settings
->getValues());
if ($this->block instanceof ContextAwarePluginInterface) {
$this->block
->setContextMapping($form_state
->getValue('context_mapping', []));
}
$this
->getVariantPlugin()
->updateBlock($this->block
->getConfiguration()['uuid'], [
'region' => $form_state
->getValue('region'),
]);
$cached_values = $this
->getTempstore()
->get($form_state
->get('variant_id'));
$cached_values['plugin'] = $this
->getVariantPlugin();
$this
->getTempstore()
->set($form_state
->get('variant_id'), $cached_values);
}
/**
* Gets the variant plugin for this page variant entity.
*
* @return \Drupal\ctools\Plugin\BlockVariantInterface
*/
protected function getVariantPlugin() {
return $this->variantPlugin;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
ContextAwarePluginAssignmentTrait:: |
protected | function | Builds a form element for assigning a context to a given slot. | |
ContextAwarePluginAssignmentTrait:: |
protected | function | Wraps the context handler. | |
ContextAwarePluginAssignmentTrait:: |
abstract protected | function | Ensures the t() method is available. | |
DependencySerializationTrait:: |
protected | property | An array of entity type IDs keyed by the property name of their storages. | |
DependencySerializationTrait:: |
protected | property | An array of service IDs keyed by property name used for serialization. | |
DependencySerializationTrait:: |
public | function | 1 | |
DependencySerializationTrait:: |
public | function | 2 | |
FormBase:: |
protected | property | The config factory. | 1 |
FormBase:: |
protected | property | The request stack. | 1 |
FormBase:: |
protected | property | The route match. | |
FormBase:: |
protected | function | Retrieves a configuration object. | |
FormBase:: |
protected | function | Gets the config factory for this form. | 1 |
FormBase:: |
private | function | Returns the service container. | |
FormBase:: |
protected | function | Gets the current user. | |
FormBase:: |
protected | function | Gets the request object. | |
FormBase:: |
protected | function | Gets the route match. | |
FormBase:: |
protected | function | Gets the logger for a specific channel. | |
FormBase:: |
protected | function |
Returns a redirect response object for the specified route. Overrides UrlGeneratorTrait:: |
|
FormBase:: |
public | function | Resets the configuration factory. | |
FormBase:: |
public | function | Sets the config factory for this form. | |
FormBase:: |
public | function | Sets the request stack object to use. | |
FormInterface:: |
public | function | Returns a unique string identifying the form. | 236 |
LinkGeneratorTrait:: |
protected | property | The link generator. | 1 |
LinkGeneratorTrait:: |
protected | function | Returns the link generator. | |
LinkGeneratorTrait:: |
protected | function | Renders a link to a route given a route name and its parameters. | |
LinkGeneratorTrait:: |
public | function | Sets the link generator service. | |
LoggerChannelTrait:: |
protected | property | The logger channel factory service. | |
LoggerChannelTrait:: |
protected | function | Gets the logger for a specific channel. | |
LoggerChannelTrait:: |
public | function | Injects the logger channel factory. | |
MessengerTrait:: |
protected | property | The messenger. | 29 |
MessengerTrait:: |
public | function | Gets the messenger. | 29 |
MessengerTrait:: |
public | function | Sets the messenger. | |
RedirectDestinationTrait:: |
protected | property | The redirect destination service. | 1 |
RedirectDestinationTrait:: |
protected | function | Prepares a 'destination' URL query parameter for use with \Drupal\Core\Url. | |
RedirectDestinationTrait:: |
protected | function | Returns the redirect destination service. | |
RedirectDestinationTrait:: |
public | function | Sets the redirect destination service. | |
StringTranslationTrait:: |
protected | property | The string translation service. | 1 |
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 |
UrlGeneratorTrait:: |
protected | property | The url generator. | |
UrlGeneratorTrait:: |
protected | function | Returns the URL generator service. | |
UrlGeneratorTrait:: |
public | function | Sets the URL generator service. | |
UrlGeneratorTrait:: |
protected | function | Generates a URL or path for a specific route based on the given parameters. | |
VariantPluginConfigureBlockFormBase:: |
protected | property | The plugin being configured. | |
VariantPluginConfigureBlockFormBase:: |
protected | property | Tempstore factory. | |
VariantPluginConfigureBlockFormBase:: |
protected | property | The variant plugin. | |
VariantPluginConfigureBlockFormBase:: |
public | function |
Form constructor. Overrides FormInterface:: |
1 |
VariantPluginConfigureBlockFormBase:: |
public static | function |
Instantiates a new instance of this class. Overrides FormBase:: |
1 |
VariantPluginConfigureBlockFormBase:: |
protected | function | Get the tempstore. | |
VariantPluginConfigureBlockFormBase:: |
protected | function | Get the tempstore id. | |
VariantPluginConfigureBlockFormBase:: |
protected | function | Gets the variant plugin for this page variant entity. | |
VariantPluginConfigureBlockFormBase:: |
abstract protected | function | Prepares the block plugin based on the block ID. | 2 |
VariantPluginConfigureBlockFormBase:: |
public | function |
Form submission handler. Overrides FormInterface:: |
|
VariantPluginConfigureBlockFormBase:: |
abstract protected | function | Returns the text to use for the submit button. | 2 |
VariantPluginConfigureBlockFormBase:: |
public | function |
Form validation handler. Overrides FormBase:: |
|
VariantPluginConfigureBlockFormBase:: |
public | function | Constructs a new VariantPluginConfigureBlockFormBase. | 1 |