You are here

public function reference_table_formatter_field_collection::get_bundles in Reference Table Formatter 7

Get a list of bundles which can be referenced by this field.

Return value

array A list of bundles.

Overrides reference_table_formatter_base_type::get_bundles

File

plugins/reference_types/field_collection.inc, line 19

Class

reference_table_formatter_field_collection
Class reference_table_formatter_field_collection

Code

public function get_bundles() {

  // Field collections can only have a single bundle, matching the field name.
  return array(
    $this->instance['field_name'],
  );
}