uid == 0) {
echo ‘
‘;
echo ‘
‘;
}
else {
echo ‘
You are currently registered for the following:
- ‘;
- Professional Course
- Parent Course
- Learning Tree Workshop
- Regulatory Sensory Workshop
- Lifespan Approach Workshop
- Meltdowns Workshop
- Assessments
if (in_array(“ProfessionalConf”, $user->roles))
echo “
Click here to begin a professional course or go to ‘Professional Course’ under ‘Courses’ at the top of this page.”;
if (in_array(“ParentConf”, $user->roles))
echo “
Click here to begin a parent course or go to ‘Parent Course’ under ‘Courses’ at the top of this page.”;
if (in_array(“LearningTree”, $user->roles))
echo “
Click here to begin a learning tree workshop or go to ‘Learning Tree Workshop’ under ‘Workshops’ at the top of this page.”;
if (in_array(“Regulatory”, $user->roles))
echo “
Click here to begin a regulatory sensory workshop or go to ‘Regulatory Sensory Workshop’ under ‘Workshops’ at the top of this page.”;
if (in_array(“Lifespan”, $user->roles))
echo “
Click here to begin a lifespan approach workshop or go to ‘Lifespan Approach Workshop’ under ‘Workshops’ at the top of this page.”;
if (in_array(“Meltdowns”, $user->roles))
echo “
Click here to begin a meltdowns workshop or go to ‘Meltdowns Workshop’ under ‘Workshops’ at the top of this page.”;
if (in_array(“Assessment”, $user->roles))
echo “
See below”;
echo ‘
‘;
if (in_array(“Assessment”, $user->roles)) {
echo ‘
Assessments
‘;
echo ‘
- ‘;
- Take a Developmental Assessment
- Finish a Developmental Assessment
- View Developmental Assessment Results
- Take a Sensory Processing Assessment
- Finish a Sensory Processing Assessment
- View Sensory Processing Assessment Results
echo ‘
‘;
}
}