2008-04-18 00:03:51 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Manages the loading of single form steps, and acts as a state machine
|
|
|
|
* that connects to a {@link MultiFormSession} object as a persistence layer.
|
|
|
|
*
|
|
|
|
* CAUTION: If you're using controller permission control,
|
|
|
|
* you have to allow the following methods:
|
|
|
|
* <code>
|
|
|
|
* static $allowed_actions = array('next','prev');
|
|
|
|
* </code>
|
|
|
|
*
|
|
|
|
* @todo Deal with Form->securityID
|
|
|
|
*
|
|
|
|
* @package multiform
|
|
|
|
*/
|
|
|
|
abstract class MultiForm extends Form {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A session object stored in the database, which might link
|
|
|
|
* to further temporary {@link DataObject}s.
|
|
|
|
*
|
|
|
|
* @var MultiFormSession
|
|
|
|
*/
|
|
|
|
protected $session;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Defines which subclass of {@link MultiFormStep} starts the form -
|
|
|
|
* needs to be defined for the controller to work correctly
|
|
|
|
*
|
|
|
|
* @var string Classname of a {@link MultiFormStep} subclass
|
|
|
|
*/
|
|
|
|
protected static $start_step;
|
|
|
|
|
2008-04-19 03:14:16 +02:00
|
|
|
/**
|
|
|
|
* Define what type of URL you want to use throughout the step process.
|
|
|
|
*
|
|
|
|
* By default, we store a hash, for example: http://mysite.com/my-form/?MultiFormSessionID=de9f2c7fd25e1b3afad3e850bd17d9b100db4b3
|
|
|
|
* Alternatively, if you set this variable to "ID", then you get ?MultiFormSessionID=20
|
|
|
|
*
|
|
|
|
* The ID is not as secure as the hash, but it all depends on your set up.
|
|
|
|
* If you're going to add security, such as check the SubmitterID on init
|
|
|
|
* of the MultiForm and use "ID" for this parameter, then security should be fine.
|
|
|
|
*
|
|
|
|
* In any other case, where there's no Member tied to a MultiFormSession, using
|
|
|
|
* the Hash is the recommended approach.
|
|
|
|
*
|
|
|
|
* @var $url_type either "ID", or "Hash"
|
|
|
|
*/
|
|
|
|
protected static $url_type = 'Hash';
|
|
|
|
|
2008-04-18 00:03:51 +02:00
|
|
|
static $casting = array(
|
|
|
|
'CompletedStepCount' => 'Int',
|
|
|
|
'TotalStepCount' => 'Int',
|
|
|
|
'CompletedPercent' => 'Float'
|
|
|
|
);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* These fields are ignored when saving the raw form data into session.
|
|
|
|
* This ensures only field data is saved, and nothing else that's useless
|
|
|
|
* or potentially dangerous.
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
static $ignored_fields = array(
|
|
|
|
'url',
|
|
|
|
'executeForm',
|
|
|
|
'MultiFormSessionID',
|
|
|
|
'SecurityID'
|
|
|
|
);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Perform actions when the multiform is first started.
|
|
|
|
*
|
|
|
|
* It does NOT work like a normal controller init()! It has to be explicity called when MultiForm
|
2008-04-20 02:01:27 +02:00
|
|
|
* is intanciated on your controller. @TODO perhaps find a better name, that doesn't quite conflict.
|
2008-04-18 00:03:51 +02:00
|
|
|
*
|
2008-04-21 00:07:18 +02:00
|
|
|
* This method sets up the session, figures out the current step, sets the current step, then
|
|
|
|
* takes the fields, actions and validation (if any) for the step, setting up the form.
|
2008-04-18 00:03:51 +02:00
|
|
|
*/
|
|
|
|
public function init() {
|
2008-04-20 02:01:27 +02:00
|
|
|
// Set up the session
|
|
|
|
$this->setSession();
|
|
|
|
|
|
|
|
// Get the current step, and set it
|
|
|
|
$currentStep = $this->getCurrentStep();
|
|
|
|
$this->setCurrentStep($currentStep);
|
|
|
|
|
|
|
|
// Set up the fields from the current step
|
|
|
|
$this->setFields($currentStep->getFields());
|
|
|
|
|
|
|
|
// Set up the actions from the current step
|
|
|
|
$this->setActions();
|
|
|
|
|
|
|
|
// Set a hidden field in the form to define what this form session ID is
|
|
|
|
$this->fields->push(new HiddenField('MultiFormSessionID', false, ($this->stat('url_type') == 'ID') ? $this->session->ID : $this->session->Hash));
|
|
|
|
|
|
|
|
// Set up validator from the form step class
|
|
|
|
$this->validator = $currentStep->getValidator();
|
|
|
|
|
|
|
|
// If there is form data, we populate it here (CAUTION: loadData() MUST unserialize first!)
|
|
|
|
if($currentStep->loadData()) {
|
|
|
|
$this->loadDataFrom($currentStep->loadData());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the current step.
|
|
|
|
* @return MultiFormStep subclass
|
|
|
|
*/
|
|
|
|
public function getCurrentStep() {
|
2008-04-18 00:03:51 +02:00
|
|
|
$startStepClass = $this->stat('start_step');
|
2008-04-19 03:14:16 +02:00
|
|
|
|
2008-04-19 03:23:28 +02:00
|
|
|
// Check if there was a start step defined on the subclass of MultiForm
|
2008-04-19 03:14:16 +02:00
|
|
|
if(!isset($startStepClass)) user_error('MultiForm::init(): Please define a $startStep on ' . $this->class, E_USER_ERROR);
|
2008-04-18 00:03:51 +02:00
|
|
|
|
|
|
|
// Determine whether we use the current step, or create one if it doesn't exist
|
|
|
|
if(isset($_GET['StepID'])) {
|
|
|
|
$stepID = (int)$_GET['StepID'];
|
|
|
|
$step = DataObject::get_one('MultiFormStep', "SessionID = {$this->session->ID} AND ID = {$stepID}");
|
|
|
|
if($step) {
|
|
|
|
$currentStep = $step;
|
|
|
|
}
|
2008-04-19 03:17:12 +02:00
|
|
|
// @TODO if you set a wrong ID, then it ends up at this point with a non-object error.
|
2008-04-18 00:03:51 +02:00
|
|
|
} elseif($this->session->CurrentStepID) {
|
|
|
|
$currentStep = $this->session->CurrentStep();
|
|
|
|
} else {
|
2008-04-20 02:01:27 +02:00
|
|
|
// @TODO fix the fact that you can continually refresh on the first step creating new records
|
2008-04-18 00:03:51 +02:00
|
|
|
// @TODO encapsulate this into it's own method - it's the same code as the next() method anyway
|
|
|
|
$currentStep = new $startStepClass();
|
|
|
|
$currentStep->SessionID = $this->session->ID;
|
|
|
|
$currentStep->write();
|
|
|
|
}
|
2008-04-20 02:01:27 +02:00
|
|
|
return $currentStep;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set the step passed in as the current step.
|
|
|
|
* @param MultiFormStep $step A subclass of MultiFormStep
|
|
|
|
*/
|
|
|
|
protected function setCurrentStep($step) {
|
|
|
|
$this->session->CurrentStepID = $step->ID;
|
|
|
|
$this->session->write();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set up the session. There's a bit of logic to determine this, specifically
|
|
|
|
* checking if there's a GET variable for a current session set.
|
|
|
|
*/
|
|
|
|
protected function setSession() {
|
|
|
|
$urlType = $this->stat('url_type');
|
2008-04-18 00:03:51 +02:00
|
|
|
|
2008-04-20 02:01:27 +02:00
|
|
|
// If there's a MultiFormSessionID variable set, find that, otherwise create a new session
|
2008-04-20 11:28:02 +02:00
|
|
|
if(isset($_GET['MultiFormSessionID'])) {
|
|
|
|
switch($urlType) {
|
|
|
|
case 'Hash':
|
|
|
|
$this->session = $this->getSessionRecordByHash($_GET['MultiFormSessionID']);
|
|
|
|
break;
|
|
|
|
case 'ID':
|
|
|
|
$this->session = $this->getSessionRecordByID($_GET['MultiFormSessionID']);
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
user_error('MultiForm::init(): Please define a correct value for $url_type on ' . $this->class, E_USER_ERROR);
|
|
|
|
break;
|
2008-04-20 02:01:27 +02:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// @TODO fix the fact that you can continually refresh on the first step creating new records
|
|
|
|
$this->session = new MultiFormSession();
|
2008-04-20 11:28:02 +02:00
|
|
|
$this->session->write();
|
|
|
|
|
|
|
|
// We have to have an ID, before we can hash the ID of the session. @TODO a better way here?
|
2008-04-20 07:59:15 +02:00
|
|
|
if($urlType == 'Hash') $this->session->Hash = sha1($this->session->ID . '-' . microtime());
|
2008-04-20 02:01:27 +02:00
|
|
|
$this->session->write(); // I guess we could hash something else than the ID, this is a bit ugly...
|
2008-04-18 00:03:51 +02:00
|
|
|
}
|
2008-04-20 11:28:02 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return an instance of MultiFormSession from the database by a single
|
|
|
|
* record with the hash passed into this method.
|
|
|
|
*
|
|
|
|
* @param string $hash The Hash field of the record to retrieve
|
|
|
|
* @return MultiFormSession
|
|
|
|
*/
|
|
|
|
function getSessionRecordByHash($hash) {
|
|
|
|
$SQL_hash = Convert::raw2sql($hash);
|
|
|
|
return DataObject::get_one('MultiFormSession', "Hash = '$SQL_hash'");
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return an instance of MultiFormSession from the database by it's ID.
|
|
|
|
*
|
|
|
|
* @param int|string $id The ID of the record to retrieve
|
|
|
|
* @return MultiFormSession
|
|
|
|
*/
|
|
|
|
function getSessionRecordByID($id) {
|
|
|
|
return DataObject::get_by_id('MultiFormSession', $id);
|
2008-04-18 00:03:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set the fields for this form.
|
|
|
|
*
|
|
|
|
* @param FieldSet $fields
|
|
|
|
*/
|
|
|
|
function setFields($fields) {
|
|
|
|
foreach($fields as $field) $field->setForm($this);
|
|
|
|
$this->fields = $fields;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set the actions for this form.
|
|
|
|
* @TODO is it appropriate to call it setActions?
|
|
|
|
* @TODO should we put this on MultiFormStep, so it's easy to override on a per-step basis?
|
|
|
|
*/
|
|
|
|
function setActions() {
|
|
|
|
// Create default multi step actions (next, prev), and merge with extra actions, if any
|
|
|
|
$this->actions = new FieldSet();
|
|
|
|
|
|
|
|
// If the form is at final step, create a submit button to perform final actions
|
|
|
|
// The last step doesn't have a next button, so add that action to any step that isn't the final one
|
2008-04-20 02:28:18 +02:00
|
|
|
if($this->getCurrentStep()->isFinalStep()) {
|
2008-04-18 00:03:51 +02:00
|
|
|
$this->actions->push(new FormAction('finish', _t('MultiForm.SUBMIT', 'Submit')));
|
|
|
|
} else {
|
|
|
|
$this->actions->push(new FormAction('next', _t('MultiForm.NEXT', 'Next')));
|
|
|
|
}
|
|
|
|
|
|
|
|
// If there is a previous step defined, add the back button
|
2008-04-20 02:28:18 +02:00
|
|
|
if($this->getCurrentStep()->getPreviousStep()) {
|
2008-04-18 00:03:51 +02:00
|
|
|
if($this->actions->fieldByName('action_next')) {
|
|
|
|
$this->actions->insertBefore(new FormAction('prev', _t('MultiForm.BACK', 'Back')), 'action_next');
|
|
|
|
} elseif($this->actions->fieldByName('action_finish')) {
|
|
|
|
$this->actions->insertBefore(new FormAction('prev', _t('MultiForm.BACK', 'Back')), 'action_finish');
|
|
|
|
} else {
|
|
|
|
$this->actions->push(new FormAction('prev', _t('MultiForm.BACK', 'Back')));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Merge any extra action fields defined on the step
|
2008-04-20 02:28:18 +02:00
|
|
|
$this->actions->merge($this->getCurrentStep()->getExtraActions());
|
2008-04-18 00:03:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return a rendered version of this form, with a specific template.
|
|
|
|
* Looks through the step ancestory templates (MultiFormStep, current step
|
|
|
|
* subclass template) to see if one is available to render the form with. If
|
|
|
|
* any of those don't exist, look for a default Form template to render
|
|
|
|
* with instead.
|
|
|
|
*/
|
|
|
|
function forTemplate() {
|
|
|
|
return $this->renderWith(array(
|
2008-04-20 02:28:18 +02:00
|
|
|
$this->getCurrentStep()->class,
|
2008-04-18 00:03:51 +02:00
|
|
|
'MultiFormStep',
|
|
|
|
$this->class,
|
|
|
|
'MultiForm',
|
|
|
|
'Form'
|
|
|
|
));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This method saves the data on the final step, after submitting.
|
|
|
|
* It should always be overloaded with parent::finish($data, $form)
|
|
|
|
* so you can create your own functionality which handles saving
|
|
|
|
* of all the data collected through each step of the form.
|
|
|
|
*
|
|
|
|
* @param array $data The request data returned from the form
|
|
|
|
* @param object $form The form that the action was called on
|
|
|
|
*/
|
|
|
|
public function finish($data, $form) {
|
2008-04-20 02:28:18 +02:00
|
|
|
if(!$this->getCurrentStep->isFinalStep()) {
|
2008-04-18 00:03:51 +02:00
|
|
|
Director::redirectBack();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Save the form data for the current step
|
|
|
|
$this->save($data);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Determine what to do when the next action is called.
|
|
|
|
*
|
|
|
|
* Saves the current step session data to the database, creates the
|
|
|
|
* new step based on getNextStep() of the current step, resets the current
|
|
|
|
* step to the next step, then redirects to the step.
|
|
|
|
*
|
|
|
|
* @param array $data The request data returned from the form
|
|
|
|
* @param object $form The form that the action was called on
|
|
|
|
*/
|
|
|
|
public function next($data, $form) {
|
2008-04-20 02:28:18 +02:00
|
|
|
if(!$this->getCurrentStep()->getNextStep()) {
|
2008-04-18 00:03:51 +02:00
|
|
|
Director::redirectBack();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Switch the step to the next!
|
2008-04-20 02:28:18 +02:00
|
|
|
$nextStepClass = $this->getCurrentStep()->getNextStep();
|
2008-04-18 00:03:51 +02:00
|
|
|
|
|
|
|
// Save the form data for the current step
|
|
|
|
$this->save($data);
|
|
|
|
|
|
|
|
// Determine whether we can use a step already in the DB, or create a new one
|
|
|
|
if(!$nextStep = DataObject::get_one($nextStepClass, "SessionID = {$this->session->ID}")) {
|
|
|
|
$nextStep = new $nextStepClass();
|
|
|
|
$nextStep->SessionID = $this->session->ID;
|
2008-04-20 02:28:18 +02:00
|
|
|
$nextStep->write();
|
2008-04-18 00:03:51 +02:00
|
|
|
}
|
|
|
|
|
2008-04-20 02:28:18 +02:00
|
|
|
// Set the next step to be the current step
|
|
|
|
$this->setCurrentStep($nextStep);
|
2008-04-18 00:03:51 +02:00
|
|
|
|
|
|
|
// Redirect to the next step
|
2008-04-20 02:28:18 +02:00
|
|
|
Director::redirect($this->getCurrentStep()->Link());
|
2008-04-18 00:03:51 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Determine what to do when the previous action is called.
|
|
|
|
*
|
|
|
|
* Saves the current step session data to the database, retrieves the
|
|
|
|
* previous step instance based on the classname returned by getPreviousStep()
|
|
|
|
* on the current step instance, and resets the current step to the previous
|
|
|
|
* step found, then redirects to the step.
|
|
|
|
*
|
|
|
|
* @TODO handle loading the data back into the previous step, from session.
|
|
|
|
*
|
|
|
|
* @param array $data The request data returned from the form
|
|
|
|
* @param object $form The form that the action was called on
|
|
|
|
*/
|
|
|
|
public function prev($data, $form) {
|
2008-04-20 02:28:18 +02:00
|
|
|
if(!$this->getCurrentStep()->getPreviousStep()) {
|
2008-04-18 00:03:51 +02:00
|
|
|
Director::redirectBack();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Switch the step to the previous!
|
2008-04-20 02:28:18 +02:00
|
|
|
$prevStepClass = $this->getCurrentStep()->getPreviousStep();
|
2008-04-18 00:03:51 +02:00
|
|
|
|
|
|
|
// Get the previous step of the class instance returned from $currentStep->getPreviousStep()
|
|
|
|
$prevStep = DataObject::get_one($prevStepClass, "SessionID = {$this->session->ID}");
|
|
|
|
|
|
|
|
// Set the current step as the previous step
|
2008-04-20 02:28:18 +02:00
|
|
|
$this->setCurrentStep($prevStep);
|
2008-04-18 00:03:51 +02:00
|
|
|
|
|
|
|
// Redirect to the previous step
|
2008-04-20 02:28:18 +02:00
|
|
|
Director::redirect($this->getCurrentStep()->Link());
|
2008-04-18 00:03:51 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Save the raw data given back from the form into session.
|
|
|
|
*
|
|
|
|
* Harmful values provided from the internal form system will be unset from
|
|
|
|
* the map as defined in self::$ignored_fields. It also unsets any fields
|
|
|
|
* that look be be form action values, since they aren't required either.
|
|
|
|
*
|
|
|
|
* @param array $data An array of data to save
|
|
|
|
*/
|
|
|
|
protected function save($data) {
|
2008-04-20 02:28:18 +02:00
|
|
|
$currentStep = $this->getCurrentStep();
|
2008-04-18 00:03:51 +02:00
|
|
|
if(is_array($data)) {
|
|
|
|
foreach($data as $field => $value) {
|
2008-04-19 01:25:41 +02:00
|
|
|
if(in_array($field, self::$ignored_fields) || self::is_action_field($field)) {
|
2008-04-18 00:03:51 +02:00
|
|
|
unset($data[$field]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$currentStep->saveData($data);
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// ############ Misc ############
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Add the MultiFormSessionID variable to the URL on form submission.
|
|
|
|
* We use this to determine what session the multiform is currently using.
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
2008-04-20 11:28:02 +02:00
|
|
|
function FormAction() {
|
|
|
|
$urlMethod = $this->stat('url_type');
|
2008-04-18 00:03:51 +02:00
|
|
|
$action = parent::FormAction();
|
|
|
|
$action .= (strpos($action, '?')) ? '&' : '?';
|
2008-04-20 11:28:02 +02:00
|
|
|
$action .= "MultiFormSessionID={$this->session->$urlMethod}";
|
2008-04-18 00:03:51 +02:00
|
|
|
|
|
|
|
return $action;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Determine the steps to show in a linear fashion, starting from the
|
|
|
|
* first step. We run a recursive function passing the steps found
|
|
|
|
* by reference to get a listing of the steps.
|
|
|
|
*
|
|
|
|
* @return DataObjectSet
|
|
|
|
*/
|
|
|
|
public function getAllStepsLinear() {
|
|
|
|
$stepsFound = new DataObjectSet();
|
|
|
|
|
|
|
|
$firstStep = DataObject::get_one($this->stat('start_step'), "SessionID = {$this->session->ID}");
|
|
|
|
$templateData = array(
|
|
|
|
'ID' => $firstStep->ID,
|
|
|
|
'ClassName' => $firstStep->class,
|
|
|
|
'Title' => $firstStep->getTitle(),
|
2008-04-19 03:14:16 +02:00
|
|
|
'SessionID' => ($this->stat('url_type') == 'ID') ? $this->session->ID : $this->session->Hash,
|
2008-04-20 02:28:18 +02:00
|
|
|
'LinkingMode' => ($firstStep->ID == $this->getCurrentStep()->ID) ? 'current' : 'link'
|
2008-04-18 00:03:51 +02:00
|
|
|
);
|
|
|
|
$stepsFound->push(new ArrayData($templateData));
|
|
|
|
|
|
|
|
$this->getAllStepsRecursive($firstStep, $stepsFound);
|
|
|
|
|
|
|
|
return $stepsFound;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Recursively run through steps using the getNextStep() method on each step
|
|
|
|
* to determine what the next step is, gathering each step along the way.
|
|
|
|
* We stop on the last step, and return the results.
|
|
|
|
*
|
|
|
|
* @TODO make use of $step->getNextStepFromDatabase() instead of doing a direct
|
|
|
|
* DataObject::get() which is doing the same thing.
|
|
|
|
*
|
|
|
|
* @param $step Subclass of MultiFormStep to find the next step of
|
|
|
|
* @param $stepsFound $stepsFound DataObjectSet reference, the steps found to call back on
|
|
|
|
* @return DataObjectSet
|
|
|
|
*/
|
|
|
|
protected function getAllStepsRecursive($step, &$stepsFound) {
|
|
|
|
// Find the next step to the current step, the final step has no next step
|
|
|
|
if(!$step->isFinalStep()) {
|
|
|
|
if($step->getNextStep()) {
|
|
|
|
// Is this step in the DB? If it is, we use that
|
2008-04-20 02:39:01 +02:00
|
|
|
if($nextStep = $step->getNextStepFromDatabase()) {
|
2008-04-20 02:44:14 +02:00
|
|
|
$record = array(
|
2008-04-18 00:03:51 +02:00
|
|
|
'ID' => $nextStep->ID,
|
|
|
|
'ClassName' => $nextStep->class,
|
|
|
|
'Title' => $nextStep->getTitle(),
|
2008-04-19 03:14:16 +02:00
|
|
|
'SessionID' => ($this->stat('url_type') == 'ID') ? $this->session->ID : $this->session->Hash,
|
2008-04-20 02:28:18 +02:00
|
|
|
'LinkingMode' => ($nextStep->ID == $this->getCurrentStep()->ID) ? 'current' : 'link'
|
2008-04-18 00:03:51 +02:00
|
|
|
);
|
|
|
|
} else {
|
|
|
|
// If it's not in the DB, we use a singleton instance of it instead - this step hasn't been accessed yet
|
|
|
|
$nextStep = singleton($step->getNextStep());
|
2008-04-20 02:44:14 +02:00
|
|
|
$record = array(
|
2008-04-18 00:03:51 +02:00
|
|
|
'ClassName' => $nextStep->class,
|
|
|
|
'Title' => $nextStep->getTitle()
|
|
|
|
);
|
|
|
|
}
|
2008-04-20 02:43:19 +02:00
|
|
|
// Add the array data, and do a callback
|
2008-04-20 02:44:14 +02:00
|
|
|
$stepsFound->push(new ArrayData($record));
|
2008-04-18 00:03:51 +02:00
|
|
|
$this->getAllStepsRecursive($nextStep, $stepsFound);
|
|
|
|
}
|
|
|
|
// Once we've reached the final step, we just return what we've collected
|
|
|
|
} else {
|
|
|
|
return $stepsFound;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Number of steps already completed (excluding currently started step).
|
|
|
|
* The way we determine a step is complete is to check if it has the Data
|
|
|
|
* field filled out with a serialized value, then we know that the user has
|
|
|
|
* clicked next on the given step, to proceed.
|
|
|
|
*
|
|
|
|
* @return int
|
|
|
|
*/
|
|
|
|
public function getCompletedStepCount() {
|
|
|
|
$steps = DataObject::get('MultiFormStep', "SessionID = {$this->session->ID} && Data IS NOT NULL");
|
|
|
|
return $steps ? $steps->Count() : 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Total number of steps in the shortest path (only counting straight path without any branching)
|
|
|
|
* The way we determine this is to check if each step has a next_step string variable set. If it's
|
|
|
|
* anything else (like an array, for defining multiple branches) then it gets counted as a single step.
|
|
|
|
*
|
|
|
|
* @return int
|
|
|
|
*/
|
|
|
|
public function getTotalStepCount() {
|
|
|
|
return $this->getAllStepsLinear() ? $this->getAllStepsLinear()->Count() : 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Percentage of steps completed (excluding currently started step)
|
|
|
|
*
|
|
|
|
* @return float
|
|
|
|
*/
|
|
|
|
public function getCompletedPercent() {
|
|
|
|
return (float)$this->CompletedStepCount * 100 / $this->TotalStepCount;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Determines whether the field is an action. This checks the string name of the
|
|
|
|
* field, and not the actual field object of one. The actual checking is done
|
|
|
|
* by doing a string check to see if "action_" is prefixed to the name of the
|
|
|
|
* field. For example, in the form system: FormAction('next', 'Next') field
|
|
|
|
* gives an ID of "action_next"
|
|
|
|
*
|
|
|
|
* @param string $fieldName The name of the field to check is an action
|
|
|
|
* @param string $prefix The prefix of the string to check for, default is "action_"
|
|
|
|
* @return boolean
|
|
|
|
*/
|
2008-04-19 01:25:41 +02:00
|
|
|
public static function is_action_field($fieldName, $prefix = 'action_') {
|
2008-04-18 00:03:51 +02:00
|
|
|
if(substr((string)$fieldName, 0, strlen($prefix)) == $prefix) return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
?>
|