You are here

function fel_fields_field_collection_table_after_build in Form element layout 7

Provide our own theme for field_collection_table widgets.

This is an #after_build callback for the field_collection_table plugin. Due to the nature of CTools includes, this isn't included in ajax callbacks, so it have to live here.

1 string reference to 'fel_fields_field_collection_table_after_build'
fel_fields_field_collection_table_process_description_display in modules/fel_fields/plugins/description_display/field_collection_table.inc
CTools plugin callback.

File

modules/fel_fields/fel_fields.module, line 375
Field support for Form element layout (fel.module).

Code

function fel_fields_field_collection_table_after_build($element) {
  $element['#theme'] = 'fel_fields_collection_table';
  return $element;
}