devel_render_object($type, $object)Menu callback; prints the render structure of the current object (currently node or user).
sites/all/modules/devel/devel.module, line 1354
<?php
function devel_render_object($type, $object) {
$output = '';
$title = isset($object->title) ? $object->title : $object->name;
// not sure why menu system doesn't give us a reasonable title here.
drupal_set_title($title);
$function = $type .'_build_content';
$content = $function($object);
return kdevel_print_object($content, '$'. $type .'->');
}
?>