function ctools_node_body_content_type_render

Render the custom content type.

File

plugins/content_types/node_context/node_body.inc, line 22

Code

function ctools_node_body_content_type_render($subtype, $conf, $panel_args, $context) {
    $plugin = ctools_get_content_type('entity_field');
    $conf['formatter'] = 'text_default';
    $conf['formatter_settings'] = array();
    return $plugin['render callback']('node:body', $conf, $panel_args, $context);
}