You are here

function ctools_context_node_edit_convert_list in Chaos Tool Suite (ctools) 6

Same name and namespace in other branches
  1. 7 plugins/contexts/node_edit_form.inc \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 188
Plugin to provide a node_edit_form context

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();
}