You are here

function redhen_devel_load_object in RedHen CRM 7

Wrapper for devel_load_object which is in an include file.

2 string references to 'redhen_devel_load_object'
redhen_contact_menu in modules/redhen_contact/redhen_contact.module
Implements hook_menu().
redhen_org_menu in modules/redhen_org/redhen_org.module
Implements hook_menu().

File

./redhen.module, line 120
Defines basic functionality common to all parts of the Redhen CRM.

Code

function redhen_devel_load_object($type, $object, $name = NULL) {
  if (module_exists('devel')) {
    module_load_include('inc', 'devel', 'devel.pages');
    return devel_load_object($type, $object, $name);
  }
}