function ctools_context_node_edit_convert

Convert a context into a string.

1 string reference to 'ctools_context_node_edit_convert'
node_edit_form.inc in plugins/contexts/node_edit_form.inc
Plugin to provide a node_edit_form context.

File

plugins/contexts/node_edit_form.inc, line 187

Code

function ctools_context_node_edit_convert($context, $type) {
    // Pass through to the "node" context convert list.
    $plugin = ctools_get_context('node');
    return ctools_context_node_convert($context, $type);
}