You are here

function ds_get_field_types in Display Suite 6.3

Fetch metadata for all ds_field plugins.

Return value

An array of arrays with information about all available field types.

File

./ds.module, line 175

Code

function ds_get_field_types() {
  static $types = NULL;
  if (!isset($types)) {
    ctools_include('plugins');
    $types = ctools_get_plugins('ds', 'ds_field');
  }
  return $types;
}