You are here

function cer_preset_load in Corresponding Entity References 7.2

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

Return CER preset by key.

3 calls to cer_preset_load()
CerFieldTestCase::testFieldDelete in tests/fields.test
CerFieldTestCase::testFieldInstanceDelete in tests/fields.test
cer_preset_enabled in ./cer.module
Return 1 if CER preset specified by given key is enabled.

File

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

Code

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