Skip to content

Instantly share code, notes, and snippets.

@rfay
Created March 21, 2011 21:12
Show Gist options
  • Select an option

  • Save rfay/880225 to your computer and use it in GitHub Desktop.

Select an option

Save rfay/880225 to your computer and use it in GitHub Desktop.
/**
* Generate step map and confirmation step map.
*/
public function init() {
$i = $j = 1;
foreach ($this->steps as $step => $info) {
$this->map[$i++] = $step;
if ($info['confirmation'] !== FALSE) {
$this->confirmation_map[$j++] = $step;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment