You are here

function styles_containers_load in Styles 7

Load a specific array of styles containers.

Parameters

$field_type: The field type, such as 'file'.

1 call to styles_containers_load()
styles_fieldtype_container_load in ./styles.module
Load a specific container from a field type.

File

./styles.module, line 145
Bundles similar display formatters together.

Code

function styles_containers_load($field_type) {
  $containers = styles_containers();
  if (isset($containers[$field_type])) {
    return $containers[$field_type];
  }
}