Does anyone have any experience with multi-step forms to create / update content? Existing Drupal modules that I've found are pretty old and seem somewhat shaky. I'm guessing that people who've needed this kind of interface wrote custom solutions.
I did wonder if doing some kind of Webform => node submission would do it. Depends on if they need the multistep only for creation, or for editing as well.
Sorry I dont have a ready solution to this. The big issue is of course if you need multistep editing as well as creation, in which case Webform wouldnt help. A custom mutistep form would also be complicated if you decided to be able to add or remove new fields.
It looks like the screenshot of what you show it should look like is the admin theme whereas what they see is the front end theme.
By default, such users won't have permissions to see the...
Posted3 days 6 hours ago by Martin Price | System Horizons Ltd (yorkshirepudding) on:
I've added a new recipe. The recipe has no PHP code. It has two module dependencies (one of those depends on another contrib module and both depend on core modules that are normally enabled)...
Posted6 days 4 hours ago by Martin Price | System Horizons Ltd (yorkshirepudding) on:
well @herb I cannot believe it, but the webform module was there in modules on the disc, but missing in the listed modules, so I delete the module folder, and downloaded it again.
Then...
Posted3 weeks 1 day ago by Francis Greaves (themetman) on:
The only thing I can think of is to make sure Webform module is enabled and that the content type that needs to contain the webforms has Webform enabled for it. Edit the content type and make...
Comments
If it's just about some simple data, Webform is probably your friend. Then display form submissions in a view.
If it has to be nodes, hook_form_alter() might be your friend.
But maybe @docwilmot has better tips. It seems, he ported/forked the Ctools form wizard.
I did wonder if doing some kind of Webform => node submission would do it. Depends on if they need the multistep only for creation, or for editing as well.
Sorry I dont have a ready solution to this. The big issue is of course if you need multistep editing as well as creation, in which case Webform wouldnt help. A custom mutistep form would also be complicated if you decided to be able to add or remove new fields.
Best bet is to port https://www.drupal.org/project/msnf. It isnt pretty old (2011) but not sure if its shaky.