Would love to see this work with the Convert Node module as I have a bunch of nodes to convert... Views Bulk Operations lets me narrow down the ones I want but I can't convert them.
Convert Node only allows an entire content type to be converted or a single node with no way to filter.
Thanks for a great module.
Comments
Comment #1
infojunkieI suggest redirecting this feature request to the Node Convert maintainers as they know best how to package their functionality as an action. VBO will automatically pick it up then.
Comment #2
infojunkieHello,
I am the maintainer of Views Bulk Operations, a module that allows to perform operations on Views results. The module can invoke any operation written as an Action in the Drupal 6 sense.
It would make sense to package your conversion functionality as an action, as this would allow both Drupal triggers and View Bulk Operations to take advantage of your code without programming.
Thanks for your consideration,
Karim
Comment #3
alcroito commentedWorking on it.
But there seems to be a problem. Node convert needs a multistep form to collect all relevant data and convert all data successfully, and I'm not sure that Actions API or VBO has the appropriate case so that you can use multistep forms.
Comment #4
webwriter commentedThanks for moving forward on this, looking forward to the functionality being worked out.
Comment #5
alcroito commentedImplemented in 6.x-1.4 release.
Comment #6
equalspeterd commentedHmm.. So, I see the Covert Node action when defining a new action, but despite having defined a template to amp the fields, when presented with the form for identifying the template, i am left with a select menu with only as an option.
This is with node_convert 1.4
Thoughts or suggestions?
Comment #7
equalspeterd commentedAh. I see the problem. from line 898 in node_convert.module:
is trying to load the template from an uninitialized variable $template_id. It should read:
Comment #8
cglusky commented#7 worked for me to help convert 20+ nodes using node convert and VBO. thanks!
Comment #9
alcroito commentedFixed in http://drupal.org/node/474442 . Thanks.