You are here

function galleryformatter_get_field_settings in Gallery formatter 6

Helper function to get the widget settings.

1 call to galleryformatter_get_field_settings()
template_preprocess_galleryformatter_formatter_galleryformatter_default in includes/galleryformatter.theme.inc
Preprocess function for galleryformatter.tpl.php

File

./galleryformatter.module, line 139

Code

function galleryformatter_get_field_settings($field_name, $content_type) {
  $field = content_fields($field_name, $content_type);
  return $field['widget'];
}