function apps_devel_load_array in Apps 7
Provide development information.
1 string reference to 'apps_devel_load_array'
- apps_menu in ./
apps.module - Implements hook_menu().
File
- ./
apps.pages.inc, line 581 - The page callbacks for the Apps module.
Code
function apps_devel_load_array($type, $array) {
module_load_include('pages.inc', 'devel');
// Wth krumo, array is fine, but devel_print_object needs an object.
return devel_load_object($type, has_krumo() ? $array : (object) $array);
}