In the taxonomy_switch module, there is a functionality which allows you to change the classification of a node without loading the whole node content into the web page (whence a major gain in response time and performance if you have large nodes as I do). In 4.6 I used a very useful function call to "taxonomy_node_form" which returned a string containing the form elements appropriate to the node, and preset to the existing categorisation values. This was extremely simple and straightforward - but now it seems to have disappeared. Should I workaround this, or is it planned to reintroduce it?

Comments

treksler’s picture

if (function_exists('taxonomy_node_form')) {
$output .= implode('', taxonomy_node_form('ezdown', $node));
}

is there a 4.7 way of doing this?