You are here

function cer_preset_load in Corresponding Entity References 7

Same name and namespace in other branches
  1. 7.2 cer.module \cer_preset_load()

Return CNR preset by key.

1 call to cer_preset_load()
cer_preset_enabled in ./cer.module
Return 1 if CNR preset specified by given key is enabled.

File

./cer.module, line 104
Module file providing the "corresponding entity reference" module main functions.

Code

function cer_preset_load($key) {
  ctools_include('export');
  return ctools_export_crud_load('cer', $key);
}