Skip to content
Home Disclaimer Unique Mind Counselling
Disclaimer
Disclaimer Information on this website is provided in good faith for general informational purposes only and is not a substitute for professional assessment, diagnosis or treatment.
If you or someone you know is at immediate risk, call 000. For crisis support, contact Lifeline on 13 11 14 or Beyond Blue on 1300 22 4636.
Book an Appointment
close
// Split fields into steps at each 'step' break.
$steps = array();
$step_meta = array();
$current = array();
$has_steps = false;
foreach ( $fields as $f ) {
if ( 'step' === $f['type'] ) {
$has_steps = true;
$steps[] = $current;
$step_meta[] = array(
'title' => $f['label'] ? $f['label'] : '',
'desc' => isset( $f['options'] ) ? $f['options'] : '',
);
$current = array();
continue;
}
$current[] = $f;
}
$steps[] = $current;
if ( $has_steps ) {
// First step has no preceding break — synthesize its meta.
array_unshift( $step_meta, array( 'title' => __( 'Your Details', 'unique-mind' ), 'desc' => '' ) );
}
?>
If you are in crisis or need immediate support, call Lifeline on 13 11 14 or 000 in an emergency.
We use cookies to improve your experience and understand how our site is used. You can accept or decline analytics cookies.
Accept
Decline