function rdfui_taxonomy_vocabulary_form_submit in Schema.org configuration tool (RDF UI) 8
Handles submission the altered VocabularyForm.
Parameters
array $form: An associative array containing the structure of the form.
\Drupal\Core\Form\FormStateInterface $form_state: The current state of the form.
See also
rdfui_form_node_type_add_form_alter()
rdfui_form_node_type_edit_form_alter()
1 string reference to 'rdfui_taxonomy_vocabulary_form_submit'
- rdfui_form_taxonomy_vocabulary_form_alter in ./
rdfui.module - Implements hook_form_FORM_ID_alter().
File
- ./
rdfui.module, line 87 - Allows content types and fields to be mapped with RDF data from Schema.org.
Code
function rdfui_taxonomy_vocabulary_form_submit(array &$form, FormStateInterface $form_state) {
TaxonomyTermMappings::submitForm($form, $form_state);
}