You are here

function ds_get_field_type in Display Suite 6.3

Fetch metadata on a specific ds_field plugin.

Parameters

$field_type: Name of a ds_field type.

Return value

An array with information about the requested field type.

1 call to ds_get_field_type()
ds_create_field in ./ds.module
Factory function to initalise a new Field object

File

./ds.module, line 164

Code

function ds_get_field_type($field_type) {
  ctools_include('plugins');
  return ctools_get_plugins('ds', 'ds_field', $field_type);
}