function ctools_context_node_edit_convert_list

Provide a list of ways that this context can be converted to a string.

1 string reference to 'ctools_context_node_edit_convert_list'
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 178

Code

function ctools_context_node_edit_convert_list() {
    // Pass through to the "node" context convert list.
    $plugin = ctools_get_context('node');
    return ctools_context_node_convert_list();
}