MultiForm is a module for Sapphire, allowing flow control for forms, and step process to be automatically determined based on configuration variables on each step class. It augments the existing Form class in Sapphire.
It’s goal is to allow greater flexibility than features, so each individual implementation can be customised to the project requirements.
Warning: Whilst we try and ensure that the development version is relatively stable, there may be bugs in this copy, and a lack of testing to ensure that it works under all circumstances. Caution is advised if you are using this version. If you insist on using the development version, make sure you test your work well!
Note: The multiform directory should sit in your SilverStripe project directory in the file system as a sibling of cms, jsparty and sapphire.
If you’ve found a bug that should be fixed for future releases, then please make a ticket on our open source tracker. This helps to ensure we release less buggy software in the future!
Go here to add a new ticket to our tracker: http://open.silverstripe.com/newticket
The assumption is the developer who is starting this tutorial has an intermediate level of knowledge in SilverStripe, understands what “run db/build?flush=1” means, and has written some custom PHP code in SilverStripe before.
If you are not familiar with SilverStripe, it is highly recommended you run through the tutorials before attempting to start with this one.
Download a version of multiform. Install it as a sibling of the top level directories (sapphire, jsparty and cms) in your installation.
First of all, we need to create a new subclass of MultiForm, which can be called anything.
A suggestion for a good name, is an abbreviation of the project this multi-form is for, with “MultiForm” appended to the end. For example, if I was doing a site called “Bob’s Chicken Shack” then a good name would be BCSMultiForm. This makes sense, as it is specific to the project that you’re developing a multi-form for.
Keep in mind the PHP file you create must be in the mysite/code directory, and the filename must be the same as the class name, with the .php extension.
For the above example, our multi-form will be called BCSMultiForm.php
<?php class BCSMultiForm extends MultiForm { } ?>
Now that we’ve created our new MultiForm subclass step, we need to define what form is going to be the first step in our multi-step process.
Each form step must subclass MultiFormStep. This is so the multi-form can identify that this step is part of our step process, and is not just a standard form.
So, for example, if we were going to have a first step which collects the personal details of the form user, then we might have this class:
<?php class BCSPersonalDetailsFormStep extends MultiFormStep { } ?>
Now that we’ve got our first step of the form defined, we need to go back to our subclass of MultiForm, BCSMultiForm, and tell it that BCSPersonalDetailsFormStep is the first step.
<?php class BCSMultiForm extends MultiForm { protected static $start_step = 'BCSPersonalDetailsFormStep'; } ?>
We’ve managed to set up the basics of multi-form, but it’s not very useful, as there’s only one step!
To get more than one step, each step needs to know what it’s next step is in order to use flow control in our system.
To let the step know what step is next in the process, we do the same as setting the $start_step variable BCSMultiForm, but we call it $next_steps.
<?php class BCSPersonalDetailsFormStep extends MultiFormStep { protected static $next_steps = 'BCSOrganisationDetailsFormStep'; function getFields() { return new FieldSet( new TextField('FirstName', 'First name'), new TextField('Surname', 'Surname') ); } } ?>
At the very least, each step also has to have a getFields() method returning a FieldSet with some form field objects. These are the fields that the form will render for the given step.
Keep in mind that our multi-form also requires an end point. This step is the final, and needs to have another variable set to let the multi-form system know this is the final step.
So, if we assume that the last step in our process is BCSOrganisationDetailsFormStep, then we can do something like this:
<?php class BCSOrganisationDetailsFormStep extends MultiFormStep { protected static $is_final_step = true; } ?>
We need to run db/build?flush=1 now, so that the classes are available to the SilverStripe manifest builder, and to ensure that the database is up to scratch with all the latest tables. So you can go ahead and do that.
Note: Whenever you add a new step, you MUST run db/build?flush=1 or you may receive errors.
However, we’ve forgotten one thing. We need to create a method on a page-type so that the form can be rendered into a given template.
So, if we want to render our multi-form as $BCSMultiForm in the Page.ss template, we need to create this method (function) on Page_Controller:
<?php class Page extends SiteTree { // ... } class Page_Controller extends ContentController { // ... function BCSMultiForm() { $form = new BCSMultiForm($this, 'BCSMultiForm', new FieldSet(), new FieldSet()); $form->init(); return $form; } // ... } ?>
NOTE: If you’re using a MultiForm version greater than 0.1, you don’t need the 3rd, 4th argument to BCSMultiForm, and you also don’t need to call init(). So you can use something like:
function BCSMultiForm() { return new BCSMultiForm($this, 'BCSMultiForm'); }
The BCSMultiForm() function will create a new instance our subclass of MultiForm, which in this example, is BCSMultiForm. It will then run the init() method, which sets up all the form fields, actions, and validation available to each step, as well as the session.
You can of course, put the BCSMultiForm method on any controller class you like.
Your template should look something like this, to render the form in:
<div id="content"> <% if Content %> <div class="typography"> $Content </div> <% end_if %> <% if KSMultiForm %> $KSMultiForm <% end_if %> <% if Form %> $Form <% end_if %> </div>
In this case, the above template example is a sub-template inside the Layout directory for the templates. Note that we have also included $Form, so standard forms are still able to be used alongside our multi-step form.
If you’ve forgotten to add something to one of your form steps, you should get a fatal error complaining that there’s a problem. If you just see “This site is unable to respond to your request” or any other vague error, then the website is most likely in “Live” mode, meaning it won’t output any errors to you, as that is a function for “Dev” or “Test” sites only.
To set the environment for your project, make sure your server is made known to SS that is indeed a development server. Add a line to the set_dev_servers() function in the _config.php located in the mysite directory:
Director::set_dev_servers(array( 'localhost', 'localhost:8888', ));
Make sure that when your site eventually goes live, that the server it’s hosted on doesn’t show up in the set_dev_servers array, otherwise the world will be exposed to all fatal errors from the site.
By default, we include a couple of basic progress indicators which could be useful, out of the box.
Two of them, as of the time of writing this are:
They are designed to be used either by themselves, or alongside eachother. For example, the percentage could compliment the progress list to give an indication of completion status.
To include these with our instance of multiform, we just need to add an <% include %> statement into the template.
For example:
<% control KSMultiForm %><% include MultiFormProgressList %><% end_control %>
This means the included template is rendered within the scope of the KSMultiForm instance returned, instead of the top level controller context. This gives us the data to show the progression of the steps.
Putting it together, we might have something looking like this:
<div id="content"> <% if Content %> <div class="typography"> $Content </div> <% end_if %> <% if KSMultiForm %> <% control KSMultiForm %><% include MultiFormProgressList %><% end_control %> $KSMultiForm <% end_if %> <% if Form %> $Form <% end_if %> </div>
Feel free to play around with the progress indicators. If you need something specific to your project, just create a new “Include” template inside your own project templates directory, and include that instead. Some helpful methods to use on the MultiForm would be:
AllStepsLinear() (which also makes use of getAllStepsRecursive() to produce a list of steps)getCompletedStepCount()getTotalStepCount()getCompletedPercent()The default progress indicators make use of the above functions in the templates.
To use a custom method of your own, simply create a new method on your subclass of MultiForm. In this example, KSMultiForm would be the one to customise. This new method you create would then become available in the progress indicator template.
Now that we’ve got a structure set up to collect form data along each step, and progress through successfully, we need to customise what happens at the end of the last step.
On the final step, the finish() method is called to finalise all the data from the steps we completed. This method can be found on MultiForm. However, we cannot automatically save each step, because we don’t know where to save it. So, we must write some code on our subclass of MultiForm, overloading finish() to tell it what to do at the end.
Here is an example of what we could do here:
<?php class BCSMultiForm extends MultiForm { protected static $start_step = 'BCSPersonalDetailsForm'; public function finish($data, $form) { parent::finish($data, $form); $steps = DataObject::get('MultiFormStep', "SessionID = {$this->session->ID}"); if($steps) { foreach($steps as $step) { if($step->class == 'BCSPersonalDetailsFormStep') { $member = new Member(); $data = $step->loadData(); if($data) { $member->update($data); $member->write(); } } if($step->class == 'BCSOrganisationDetailsFormStep') { $organisation = new Organisation(); $data = $step->loadData(); if($data) { $organisation->update($data); if($member && $member->ID) $organisation->MemberID = $member->ID; $organisation->write(); } } // Debug::show($step->loadData()); // Shows the step data (unserialized by loadData) } } } } ?>
If you’re dealing with sensitive data, it’s best to delete the session and step data immediately after the form is successfully submitted.
You can delete it by calling this method on the finish() for your MultiForm subclass:
$this->session->delete();
This will also go through each of it’s steps and delete them as well.
Because the multi-form system doesn’t magically do everything for you, although it does provide a sensible set of defaults, it means you need to customise certain aspects of it. Here are some useful methods that can be customised (although you can technically overload anything available on MultiForm and MultiFormStep!):
The best part about this system is the freedom to customise each form step template.
In order, when you have a page with a multi-form rendering into it, it chooses which template to render that form in this order, within the context of the MultiForm class:
More than likely, you’ll want the first one to be available when the form renders. To that effect, you can start placing templates in the templates/Includes directory for your project. You need to call them the same as the class name for each step. For example, if you want MembershipForm, a subclass of MultiFormStep to have it’s own template, you would put MembershipForm.ss into that directory, and run ?flush=1.
If you’d like a pre-existing template on how to customise the form step, have a look at Form.ss that’s found within the sapphire module. Use that template, as a base for your new MembershipForm.ss template in your project templates.
For more information on this, please look at the Form documentation under “Using a custom template”.
If you are wanting to override the next step (so, if you want the next step to be something different based on a user’s choice of input during the step, you can override getNextStep() on any given step to manually override what the next step should be. An example:
class MyStep extends MultiFormStep // ... public function getNextStep() { $data = $this->loadData(); if($data['Gender'] == 'Male') { return 'TestThirdCase1Step'; } else { return 'TestThirdCase2Step'; } } // ... }
To define validation on a step-by-step basis, please define getValidator() and return a Validator object, such as RequiredFields - for more information on form validation see form.
e.g.
class MyStep extends MultiFormStep { ... function getValidator() { return new RequiredFields(array( 'Name', 'Email' )); } ... }
finish() is the final call in the process. At this step, all the form data would most likely be unserialized, and saved to the database in whatever way the developer sees fit. By default, we have a finish() method on MultiForm which serializes the last step form data into the database, and that’s it.
finish() should be overloaded onto your subclass of MultiForm, and parent::finish() should be called first, otherwise the last step form data won’t be saved.
For example:
<?php class BCSMultiForm extends MultiForm { protected static $start_step = 'BCSPersonalDetailsForm'; public function finish($data, $form) { parent::finish($data, $form); $steps = DataObject::get('MultiFormStep', "SessionID = {$this->session->ID}"); if($steps) { foreach($steps as $step) { Debug::show($step->loadData()); // Shows the step data (unserialized by loadData) } } } } ?>
The above is a sample bit of code that simply fetches all the steps in the database that were saved. Further refinement could include getting steps only if the Data (serialized raw form data) is set, as the above example doesn’t respect branching of steps (multiple next steps on a given form step).
If you’re dealing with sensitive data, such as credit card fields, or personal fields that shouldn’t be lying around in the session database, then it’s a good idea to immediately delete this data after the user has submitted.
This can be easily achieved by adding the following line at the end of your finish() method on your MultiForm subclass.
$this->session->delete();
Included with the MultiForm module is a class called MultiFormPurgeTask. This task can be used to purge expired session data on a regular basis. The date of expiry can be customised, and is given a default of 7 days to delete sessions after their creation.
You can run the task from the URL, by using http://mysite.com/MultiFormPurgeTask/run
MultiFormPurgeTask is a subclass of DailyTask, so can be used alongside the cli-script.php automated tasks which are included with SilverStripe.
One way of automatically running this on a UNIX based machine is by cron. For more information, see scheduledtask for more information.
$form→saveInto() with MultiForm, as it doesn’t have all steps in the $form context at finish()prev() and next() on each step. Currently you can only customise for the entire MultiForm subclass. There is a way to customise on a per step basis, which could be described in a small recipe.$next_steps
Please use comments for notes, tips and corrections about the described
functionality.
Use the Silverstripe Forum to
ask questions.