You are here

function fc_enabled_entity_types in Field Complete 7

Returns the list of enabled entity types

2 calls to fc_enabled_entity_types()
fc_entity_is_enabled in ./fc.module
Returns TRUE if the given entity is enabled with fc, FALSE otherwise.
fc_preprocess_field in ./fc.module
Theme preprocess function for theme_field() and field.tpl.php.

File

./fc.module, line 436
Field Complete - Provides field-based completeness for any entity.

Code

function fc_enabled_entity_types() {
  return variable_get('fc_entity_types', array(
    'node' => 'node',
    'user' => 'user',
  ));
}