public function MappedTermsProperty::buildConfigurationForm in Search API Field Map 8
Same name and namespace in other branches
- 8.3 src/Plugin/search_api/processor/Property/MappedTermsProperty.php \Drupal\search_api_field_map\Plugin\search_api\processor\Property\MappedTermsProperty::buildConfigurationForm()
- 8.2 src/Plugin/search_api/processor/Property/MappedTermsProperty.php \Drupal\search_api_field_map\Plugin\search_api\processor\Property\MappedTermsProperty::buildConfigurationForm()
- 4.x src/Plugin/search_api/processor/Property/MappedTermsProperty.php \Drupal\search_api_field_map\Plugin\search_api\processor\Property\MappedTermsProperty::buildConfigurationForm()
Constructs a configuration form for a field based on this property.
Parameters
\Drupal\search_api\Item\FieldInterface $field: The field for which the configuration form is constructed.
array $form: An associative array containing the initial structure of the form.
\Drupal\Core\Form\FormStateInterface $form_state: The current state of the complete form.
Return value
array The form structure.
Overrides ConfigurablePropertyInterface::buildConfigurationForm
File
- src/
Plugin/ search_api/ processor/ Property/ MappedTermsProperty.php, line 32
Class
- MappedTermsProperty
- Defines an "mapped terms" property.
Namespace
Drupal\search_api_field_map\Plugin\search_api\processor\PropertyCode
public function buildConfigurationForm(FieldInterface $field, array $form, FormStateInterface $form_state) {
$form['#attached']['library'][] = 'search_api/drupal.search_api.admin_css';
$form['#tree'] = TRUE;
$form['field_data'] = [
'#type' => 'item',
'#title' => $this
->t('Mapped terms'),
'#description' => $this
->t('By adding this field to your search index configuration, you have enabled the mapped terms processor to run when new items are indexed. Next, add a "Mapped Terms" field to any taxonomy vocabulary whose terms should be mapped to a "mapped" term (this helps map terms across vocabularies and sites to a single "mapped" term). Then, edit terms in those vocabularies to add the mapped term destination value (i.e. "Conditions>Blood Disorders"). Once that tagged content gets indexed, it will have "mapped_terms" populated with any matching mapped term destination values.'),
];
return $form;
}