public function TaxonomyFacetsBlock4::blockSubmit in Taxonomy Facets 8
Adds block type-specific submission handling for the block form.
Note that this method takes the form structure and form state for the full block configuration form as arguments, not just the elements defined in BlockPluginInterface::blockForm().
Parameters
array $form: The form definition array for the full block configuration form.
\Drupal\Core\Form\FormStateInterface $form_state: The current state of the form.
Overrides BlockPluginTrait::blockSubmit
See also
\Drupal\Core\Block\BlockPluginInterface::blockForm()
\Drupal\Core\Block\BlockPluginInterface::blockValidate()
File
- src/
Plugin/ Block/ TaxonomyFacetsBlock4.php, line 64
Class
- TaxonomyFacetsBlock4
- Provides a 'Taxonomy Facets Menu' block.
Namespace
Drupal\taxonomy_facets\Plugin\BlockCode
public function blockSubmit($form, FormStateInterface $form_state) {
// Save our custom settings when the form is submitted.
$this
->setConfigurationValue('taxo_vocabulary_id', $form_state
->getValue('vocab_select'));
}