You are here

function _ds_fields_load_devel in Display Suite 6.2

Same name and namespace in other branches
  1. 6.3 includes/ds.fields.inc \_ds_fields_load_devel()
  2. 6 includes/ds.fields.inc \_ds_fields_load_devel()

Helper function to load devel if needed.

1 call to _ds_fields_load_devel()
ds_fields_examples in includes/ds.fields.inc
Show examples for a field by loading the objects and preprocess variables.

File

includes/ds.fields.inc, line 794
Manage fields.

Code

function _ds_fields_load_devel() {
  if (!module_exists('devel')) {
    module_load_include('module', 'devel');
  }
}