function ctools_context_node_edit_convert in Chaos Tool Suite (ctools) 6
Same name and namespace in other branches
- 7 plugins/contexts/node_edit_form.inc \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 197 - Plugin to provide a node_edit_form context
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);
}