You are here

function cer_preset_load_enabled in Corresponding Entity References 7.2

Same name and namespace in other branches
  1. 7 cer.module \cer_preset_load_enabled()

Load enabled CER presets.

3 calls to cer_preset_load_enabled()
cer_field_delete_field in ./cer.module
Implements hook_field_delete_field().
cer_field_delete_instance in ./cer.module
Implements hook_field_delete_instance().
cer_processing_entity in ./cer.module
Process a entity's corresponding entity references.

File

./cer.module, line 154
Main module file.

Code

function cer_preset_load_enabled() {
  ctools_include('export');
  return ctools_export_load_object('cer', 'conditions', array(
    'enabled' => 1,
  ));
}