public function EntityQueueHandlerBase::submitConfigurationForm in Entityqueue 8
Form submission handler.
Parameters
array $form: An associative array containing the structure of the plugin form as built by static::buildConfigurationForm().
\Drupal\Core\Form\FormStateInterface $form_state: The current state of the form. Calling code should pass on a subform state created through \Drupal\Core\Form\SubformState::createForSubform().
Overrides PluginFormInterface::submitConfigurationForm
1 call to EntityQueueHandlerBase::submitConfigurationForm()
- SmartQueue::submitConfigurationForm in modules/
entityqueue_smartqueue/ src/ Plugin/ EntityQueueHandler/ SmartQueue.php - Form submission handler.
2 methods override EntityQueueHandlerBase::submitConfigurationForm()
- SmartQueue::submitConfigurationForm in modules/
entityqueue_smartqueue/ src/ Plugin/ EntityQueueHandler/ SmartQueue.php - Form submission handler.
- Test::submitConfigurationForm in tests/
modules/ entityqueue_test/ src/ Plugin/ EntityQueueHandler/ Test.php - Form submission handler.
File
- src/
EntityQueueHandlerBase.php, line 80
Class
- EntityQueueHandlerBase
- Base class for EntityQueueHandler plugins.
Namespace
Drupal\entityqueueCode
public function submitConfigurationForm(array &$form, FormStateInterface $form_state) {
// Override this.
}