function taxonomy_display_associated_display_handler_views_callback in Taxonomy display 7
Ajax callback; return just the term display sub-form.
Return value
renderable array
1 string reference to 'taxonomy_display_associated_display_handler_views_callback'
- TaxonomyDisplayAssociatedDisplayHandlerViews::formFieldset in handlers/
associated/ views.inc - Build our form for the fieldset.
File
- handlers/
associated/ views.inc, line 8
Code
function taxonomy_display_associated_display_handler_views_callback($form, $form_state) {
$field = taxonomy_display_form_fieldset($form, 'associated');
if ($field) {
return $field['display'];
}
}