class SynonymForm in Synonyms 8
Same name and namespace in other branches
- 2.0.x src/Form/SynonymForm.php \Drupal\synonyms\Form\SynonymForm
Entity form for 'synonym' config entity type.
Hierarchy
- class \Drupal\Core\Form\FormBase implements ContainerInjectionInterface, FormInterface uses DependencySerializationTrait, LoggerChannelTrait, MessengerTrait, LinkGeneratorTrait, RedirectDestinationTrait, UrlGeneratorTrait, StringTranslationTrait
- class \Drupal\Core\Entity\EntityForm implements EntityFormInterface
- class \Drupal\synonyms\Form\SynonymForm
- class \Drupal\Core\Entity\EntityForm implements EntityFormInterface
Expanded class hierarchy of SynonymForm
File
- src/
Form/ SynonymForm.php, line 20
Namespace
Drupal\synonyms\FormView source
class SynonymForm extends EntityForm {
/**
* The synonym entity.
*
* @var \Drupal\synonyms\SynonymInterface
*/
protected $entity;
/**
* The entity type manager.
*
* @var \Drupal\Core\Entity\EntityTypeManagerInterface
*/
protected $entityTypeManager;
/**
* The entity type bundle info.
*
* @var \Drupal\Core\Entity\EntityTypeBundleInfoInterface
*/
protected $entityTypeBundleInfo;
/**
* The synonyms provider plugin manager.
*
* @var \Drupal\synonyms\SynonymsProviderPluginManager
*/
protected $synonymsProviderPluginManager;
/**
* The synonyms behavior service.
*
* @var \Drupal\synonyms\SynonymsService\BehaviorService
*/
protected $behaviorServices;
/**
* Entity type that is being edited/added.
*
* @var \Drupal\Core\Entity\EntityTypeInterface
*/
protected $controlledEntityType;
/**
* Bundle that is being edited/added.
*
* @var string
*/
protected $controlledBundle;
/**
* Service ID that is being edited/added.
*
* @var string
*/
protected $behaviorServiceId;
/**
* The container.
*
* @var \Symfony\Component\DependencyInjection\ContainerInterface
*/
protected $container;
/**
* SynonymForm constructor.
*
* @param \Drupal\Core\Entity\EntityTypeManagerInterface $entity_type_manager
* The entity type manager.
* @param \Drupal\Core\Entity\EntityTypeBundleInfoInterface $entity_type_bundle_info
* The entity type bundle info.
* @param \Drupal\synonyms\SynonymsProviderPluginManager $synonyms_provider_plugin_manager
* The synonyms provider plugin_manager.
* @param \Drupal\synonyms\SynonymsService\BehaviorService $behavior_services
* The behavior services.
* @param \Symfony\Component\DependencyInjection\ContainerInterface $container
* The container.
*/
public function __construct(EntityTypeManagerInterface $entity_type_manager, EntityTypeBundleInfoInterface $entity_type_bundle_info, SynonymsProviderPluginManager $synonyms_provider_plugin_manager, BehaviorService $behavior_services, ContainerInterface $container) {
$this->entityTypeManager = $entity_type_manager;
$this->entityTypeBundleInfo = $entity_type_bundle_info;
$this->synonymsProviderPluginManager = $synonyms_provider_plugin_manager;
$this->behaviorServices = $behavior_services;
$this->container = $container;
}
/**
* {@inheritdoc}
*/
public static function create(ContainerInterface $container) {
return new static($container
->get('entity_type.manager'), $container
->get('entity_type.bundle.info'), $container
->get('plugin.manager.synonyms_provider'), $container
->get('synonyms.behaviors'), $container);
}
/**
* {@inheritdoc}
*/
protected function init(FormStateInterface $form_state) {
parent::init($form_state);
if ($this->entity
->isNew()) {
$this->controlledEntityType = $this
->getRequest()
->get('synonyms_entity_type')
->id();
$this->controlledBundle = $this
->getRequest()
->get('bundle');
$this->behaviorServiceId = $this
->getRouteMatch()
->getRawParameter('synonyms_behavior_service');
}
else {
$plugin_definition = $this->entity
->getProviderPluginInstance()
->getPluginDefinition();
$this->controlledEntityType = $plugin_definition['controlled_entity_type'];
$this->controlledBundle = $plugin_definition['controlled_bundle'];
$this->behaviorServiceId = $plugin_definition['synonyms_behavior_service'];
}
}
/**
* {@inheritdoc}
*/
public function form(array $form, FormStateInterface $form_state) {
$form = parent::form($form, $form_state);
$class = get_class($this);
$provider_plugin = $this->entity
->getProviderPlugin();
if ($form_state
->getValue('provider_plugin')) {
$provider_plugin = $form_state
->getValue('provider_plugin');
}
$form['id'] = [
'#type' => 'value',
'#value' => str_replace(':', '.', $provider_plugin),
];
$options = [];
foreach ($this->synonymsProviderPluginManager
->getDefinitions() as $plugin_id => $plugin) {
if ($plugin['controlled_entity_type'] == $this->controlledEntityType && $plugin['controlled_bundle'] == $this->controlledBundle && $plugin['synonyms_behavior_service'] == $this->behaviorServiceId) {
$options[$plugin_id] = $plugin['label'];
}
}
$form['provider_plugin'] = [
'#type' => 'select',
'#title' => $this
->t('Synonyms provider'),
'#description' => $this
->t('Select what synonyms provider it should represent.'),
'#required' => TRUE,
'#options' => $options,
'#default_value' => $this->entity
->getProviderPlugin(),
'#ajax' => [
'wrapper' => 'synonyms-entity-configuration-ajax-wrapper',
'event' => 'change',
'callback' => [
$class,
'ajaxForm',
],
],
];
$form['ajax_wrapper'] = [
'#prefix' => '<div id="synonyms-entity-configuration-ajax-wrapper">',
'#suffix' => '</div>',
];
$form['ajax_wrapper']['provider_configuration'] = [
'#tree' => TRUE,
'#title' => $this
->t('Provider settings'),
'#open' => TRUE,
];
$form['ajax_wrapper']['behavior_configuration'] = [
'#tree' => TRUE,
'#title' => $this
->t('Behavior settings'),
'#open' => TRUE,
];
if ($provider_plugin) {
$provider_plugin_instance = $this->entity
->getProviderPluginInstance();
if ($provider_plugin_instance instanceof PluginFormInterface) {
$form['ajax_wrapper']['provider_configuration']['#type'] = 'details';
$form['ajax_wrapper']['provider_configuration'] += $provider_plugin_instance
->buildConfigurationForm($form['ajax_wrapper']['provider_configuration'], $form_state);
}
$behavior_service_instance = $provider_plugin_instance
->getBehaviorServiceInstance();
if ($behavior_service_instance instanceof SynonymsBehaviorConfigurableInterface) {
$form['ajax_wrapper']['behavior_configuration']['#type'] = 'details';
$form['ajax_wrapper']['behavior_configuration'] += $behavior_service_instance
->buildConfigurationForm($form['ajax_wrapper']['behavior_configuration'], $form_state, $this->entity
->getBehaviorConfiguration(), $this->entity);
}
}
return $form;
}
/**
* {@inheritdoc}
*/
public function validateForm(array &$form, FormStateInterface $form_state) {
parent::validateForm($form, $form_state);
if ($this->entity
->getProviderPluginInstance() instanceof PluginFormInterface) {
$this->entity
->getProviderPluginInstance()
->validateConfigurationForm($form['ajax_wrapper']['provider_configuration'], $this
->getSubFormState('provider_configuration', $form, $form_state));
}
if ($this->entity
->getProviderPluginInstance()
->getBehaviorServiceInstance() instanceof SynonymsBehaviorConfigurableInterface) {
$this->entity
->getProviderPluginInstance()
->getBehaviorServiceInstance()
->validateConfigurationForm($form['ajax_wrapper']['behavior_configuration'], $this
->getSubFormState('behavior_configuration', $form, $form_state), $this->entity);
}
}
/**
* {@inheritdoc}
*/
public function submitForm(array &$form, FormStateInterface $form_state) {
parent::submitForm($form, $form_state);
if ($this->entity
->getProviderPluginInstance() instanceof PluginFormInterface) {
$this->entity
->getProviderPluginInstance()
->submitConfigurationForm($form['ajax_wrapper']['provider_configuration'], $this
->getSubFormState('provider_configuration', $form, $form_state));
}
if ($this->entity
->getProviderPluginInstance()
->getBehaviorServiceInstance() instanceof SynonymsBehaviorConfigurableInterface) {
$this->entity
->setBehaviorConfiguration($this->entity
->getProviderPluginInstance()
->getBehaviorServiceInstance()
->submitConfigurationForm($form['ajax_wrapper']['behavior_configuration'], $this
->getSubFormState('behavior_configuration', $form, $form_state), $this->entity));
}
}
/**
* {@inheritdoc}
*/
public function save(array $form, FormStateInterface $form_state) {
$status = $this->entity
->save();
if ($status) {
$this
->messenger()
->addStatus($this
->t('Saved the %label synonym configuration.', [
'%label' => $this->entity
->label(),
]));
}
else {
$this
->messenger()
->addError($this
->t('The %label synonym configuration was not saved.', [
'%label' => $this->entity
->label(),
]));
}
$form_state
->setRedirect('entity.synonym.overview');
}
/**
* Check whether entity with such ID already exists.
*
* @param string $id
* Entity ID to check.
*
* @return bool
* Whether entity with such ID already exists.
*/
public function exist($id) {
$entity = $this->entityTypeManager
->getStorage('synonym')
->getQuery()
->condition('id', $id)
->execute();
return (bool) $entity;
}
/**
* Ajax callback.
*/
public static function ajaxForm(array &$form, FormStateInterface $form_state, Request $request) {
return $form['ajax_wrapper'];
}
/**
* Supportive method to create sub-form-states.
*
* @param string $element_name
* Name of the nested form element for which to create a sub form state.
* @param array $form
* Full form array.
* @param \Drupal\Core\Form\FormStateInterface $form_state
* Full form state out of which to create sub form state.
*
* @return \Drupal\Core\Form\SubformState
* Sub form state object generated based on the input arguments
*/
protected function getSubFormState($element_name, array $form, FormStateInterface $form_state) {
return SubformState::createForSubform($form['ajax_wrapper'][$element_name], $form, $form_state);
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
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 | |
EntityForm:: |
protected | property | The module handler service. | |
EntityForm:: |
protected | property | The name of the current operation. | |
EntityForm:: |
private | property | The entity manager. | |
EntityForm:: |
protected | function | Returns an array of supported actions for the current entity form. | 29 |
EntityForm:: |
protected | function | Returns the action form element for the current entity form. | |
EntityForm:: |
public | function | Form element #after_build callback: Updates the entity with submitted data. | |
EntityForm:: |
public | function |
Builds an updated entity object based upon the submitted form values. Overrides EntityFormInterface:: |
2 |
EntityForm:: |
public | function |
Form constructor. Overrides FormInterface:: |
10 |
EntityForm:: |
protected | function | Copies top-level form values to entity properties | 7 |
EntityForm:: |
public | function |
Returns a string identifying the base form. Overrides BaseFormIdInterface:: |
5 |
EntityForm:: |
public | function |
Gets the form entity. Overrides EntityFormInterface:: |
|
EntityForm:: |
public | function |
Determines which entity will be used by this form from a RouteMatch object. Overrides EntityFormInterface:: |
1 |
EntityForm:: |
public | function |
Returns a unique string identifying the form. Overrides FormInterface:: |
10 |
EntityForm:: |
public | function |
Gets the operation identifying the form. Overrides EntityFormInterface:: |
|
EntityForm:: |
protected | function | Prepares the entity object before the form is built first. | 3 |
EntityForm:: |
protected | function | Invokes the specified prepare hook variant. | |
EntityForm:: |
public | function | Process callback: assigns weights and hides extra fields. | |
EntityForm:: |
public | function |
Sets the form entity. Overrides EntityFormInterface:: |
|
EntityForm:: |
public | function |
Sets the entity manager for this form. Overrides EntityFormInterface:: |
|
EntityForm:: |
public | function |
Sets the entity type manager for this form. Overrides EntityFormInterface:: |
|
EntityForm:: |
public | function |
Sets the module handler for this form. Overrides EntityFormInterface:: |
|
EntityForm:: |
public | function |
Sets the operation for this form. Overrides EntityFormInterface:: |
|
EntityForm:: |
public | function | ||
EntityForm:: |
public | function | ||
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. | |
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 |
StringTranslationTrait:: |
protected | function | Translates a string to the current language or to a given language. | |
SynonymForm:: |
protected | property | Service ID that is being edited/added. | |
SynonymForm:: |
protected | property | The synonyms behavior service. | |
SynonymForm:: |
protected | property | The container. | |
SynonymForm:: |
protected | property | Bundle that is being edited/added. | |
SynonymForm:: |
protected | property | Entity type that is being edited/added. | |
SynonymForm:: |
protected | property |
The synonym entity. Overrides EntityForm:: |
|
SynonymForm:: |
protected | property | The entity type bundle info. | |
SynonymForm:: |
protected | property |
The entity type manager. Overrides EntityForm:: |
|
SynonymForm:: |
protected | property | The synonyms provider plugin manager. | |
SynonymForm:: |
public static | function | Ajax callback. | |
SynonymForm:: |
public static | function |
Instantiates a new instance of this class. Overrides FormBase:: |
|
SynonymForm:: |
public | function | Check whether entity with such ID already exists. | |
SynonymForm:: |
public | function |
Gets the actual form array to be built. Overrides EntityForm:: |
|
SynonymForm:: |
protected | function | Supportive method to create sub-form-states. | |
SynonymForm:: |
protected | function |
Initialize the form state and the entity before the first form build. Overrides EntityForm:: |
|
SynonymForm:: |
public | function |
Form submission handler for the 'save' action. Overrides EntityForm:: |
|
SynonymForm:: |
public | function |
This is the default entity object builder function. It is called before any
other submit handler to build the new entity object to be used by the
following submit handlers. At this point of the form workflow the entity is
validated and the form state… Overrides EntityForm:: |
|
SynonymForm:: |
public | function |
Form validation handler. Overrides FormBase:: |
|
SynonymForm:: |
public | function | SynonymForm constructor. | |
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. |