The functionality here seems like a good fit for the Custom (Form) destination module. The node type interface would be a great addition; the rest seems like it's already covered.
The functionality here seems like a good fit for the Custom (Form) destination module. The node type interface would be a great addition; the rest seems like it's already covered.
Comments
Comment #1
introfini commentedHi,
I had a module like this ( http://drupal.org/project/nodegoto ) but then I deprecated it in favor of the Rules module.
introfini
Comment #2
alexkb commentedThanks for the prompt replies.
customdestination - this seems to cover all forms in drupal? login_destination, and the features of webform already cover most forms, except node add/edit, which is what node_destination was trying to cover.
nodegoto - this is definitely the same thing, but doesn't allow different settings per custom content type.
I was hoping to make a 5.x and 7.x release of this module too - since its so small.
What do you's think, should I just can this module now, in favour of customdestination and/or rules?
Cheers.
Comment #3
sreynen commentedcustomdestination does handle redirects on all forms, but it has no interface for selecting form IDs. You have an interface for selecting form IDs for node forms, and also handle redirects on those forms. I'm suggesting removing the duplicate handling of redirects and just apply the unique part of your module, the interface for selecting form IDs, to customdestination. Before closing this project, though, I'd open an issue in customdestination and see if the maintainer is interested in such collaboration. If not, that's not really an option.
Yes, login destination also duplicates the same functionality and could be similarly merged; it's harder to do that once people are actually using a module.
Comment #4
alexkb commentedGood idea, I've posted an issue, as suggested:
#935626: possible collaboration with node_destination module
Comment #5
bryancasler commentedsubscribe
Comment #6
rob c commentedDon't know if any work has been done on this, but i'm working on a port of Custom (Form) Destination to Drupal 7. I managed to get the functionality for the node add form working. See customdestination_form_alter() in https://github.com/ClusterFCK/customdestination/blob/master/customdestin...