Home » Privacy Policy
'; if(empty($heading)) { echo '
'; } else { echo '

'.$heading.'

'; } if(!empty($post->post_content)) { echo '
'; $openSection = true; the_content(); } if(!empty($ACF_Fields['admissions_table_row'])){ if(!empty($ACF_Fields['admissions_table_heading'])) echo '

'.$ACF_Fields['admissions_table_heading'].'

'; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; $count = 1; foreach ($ACF_Fields['admissions_table_row'] as $row) { //echo ''; echo ''; echo ''; echo ''.$row['prerequisite_courses'].''; echo ''; echo ''; if(!empty($row['prerequisite_courses_copy'])) { echo ''; echo ''; echo ''; } $count++; } echo ''; echo '
'.$ACF_Fields['admissions_table_col_heading']['col_1'].''.$ACF_Fields['admissions_table_col_heading']['col_2'].''.$ACF_Fields['admissions_table_col_heading']['col_3'].''.$ACF_Fields['admissions_table_col_heading']['col_4'].'
' . print_r($row, true) . '
'.$row['program_name'].''; if(empty($row['exam_score'])){ echo "N/A"; } else { echo $row['exam_score']; } echo ''; if($row['admission_point_system'] == 1 ){ echo "Yes"; } else { echo "N/A"; } echo '
'; echo $row['prerequisite_courses_copy']; echo '
'; } $tableAltColor = false; if(!empty($ACF_Fields['additional_content'])){ foreach($ACF_Fields['additional_content'] as $section) { switch($section['acf_fc_layout']){ case "section": if(!empty($section['heading'])) { if($section['subsection']){ echo '

'.$section['heading'].'

'; } else { if($openSection) echo '
'; $openSection = true; echo '

'.$section['heading'].'

'; echo '
'; } } echo $section['copy']; $tableAltColor = false; break; case "table": echo ''; if(!empty($section['name'])){ echo ''; if(empty($section['right_head']) && $section['right_head'] != "0"){ echo ''; } else { echo ''; } echo ''; } if(is_array($section['row'])){ echo ''; foreach ($section['row'] as $row) { echo ''; $class = ""; $dataclass = ""; if($row['head']) $class .= ' subhead'; if($row['bold']) { $class .= ' bold'; $dataclass .= ' bold'; } if(empty($row['data']) && $row['data'] != "0"){ echo ''; } else { echo ''; } echo ''; } echo '
'.$section['name'].''.$section['name'].''.$section['right_head'].'
'.$row['label'].''.$row['label'].''.$row['data'].'
'; } $tableAltColor = !$tableAltColor; break; case "faq": if(!empty($section['heading'])) { echo '

'.$section['heading'].'

'; } $odd = true; if(!empty($section['copy'])) echo $section['copy']; foreach($section['qa'] as $qa){ echo '
'; echo '

Q: '.$qa['question']."

"; echo '
A:  '.rtrim($qa['answer'])."
"; echo '
'; $odd = !$odd; } $tableAltColor = false; break; case "notice": echo '
'; if(!empty($section['note'])) echo '
'.$section['note'].'
'; if(!empty($section['info'])) echo '
'.$section['info'].'
'; echo '
'; $tableAltColor = false; break; case "course_table": $totalHours = 0; $totalOutsideHours = 0; $totalQCHours = 0; $descColspan = 2; $bottomColspan = 1; if(!empty($section['course'][0]['course_number'])) { $descColspan ++; $bottomColspan ++; } if(!empty($section['course'][0]['clock_hours'])) $descColspan ++; if(empty($section['running_total']) || $section['running_total'] == "no"){ $runningTotalHours=0; $runningTotalOutsideHours=0; $runningTotalQCHours=0; } if(in_array("outside_hours", $section['table_options'])) { $hasOutsideHours=true; $descColspan += 2; } else { $hasOutsideHours=false; } $rightHeading = "Quarter Credit Hours"; if(!empty($section['right_column_heading'])) $rightHeading = $section['right_column_heading']; $totalLine = "Total"; if(!empty($section['total-line_heading'])) $totalLine = $section['total-line_heading']; if(!empty($section['heading'])) echo '

'.$section['heading'].'

'; if(!empty($section['copy'])) echo $section['copy']; echo ''; $thead = ''; echo $thead; if(!empty($section['course'][0]['course_number'])) { $thead .= ''; $thead .= ''; } else { $thead .= ''; } if(!empty($section['course'][0]['clock_hours'])) $thead .= ''; if($hasOutsideHours) { $thead .= ''; $thead .= ''; } $thead .= ''; $thead .= ''; echo $thead; $tbody = ''; $count = 1; foreach ($section['course'] as $row) { $tbody .= ''; if(!empty($section['course'][0]['course_number'])) $tbody .= ''; $tbody .= ''; if(!empty($section['course'][0]['clock_hours']))$tbody .= ''; if($hasOutsideHours) { $tbody .= ''; $tbody .= ''; } $tbody .= ''; $tbody .= ''; if(!empty($row['description'])) { $tbody .= ''; $tbody .= ''; $tbody .= ''; } $totalHours += $row['clock_hours']; $totalQCHours += $row['quarter_credit_hours']; $totalOutsideHours += $row['outside_hours']; $count++; } $tbody .= ''; echo $tbody; echo ''; echo ''; echo ''; if($section['course'][0]['clock_hours']) echo ''; if($hasOutsideHours) { echo ''; echo ''; } echo ''; echo ''; $runningTotalHours += $totalHours; $runningTotalQCHours += $totalQCHours; if($section['running_total'] == "end"){ $totalTotalLabel = "Combined Total"; if(!empty($section['final_total_label'])) $totalTotalLabel = nl2br(trim($section['final_total_label'])); echo ''; if(!empty($section['course'][0]['clock_hours'])) echo ''; echo ''; } if(!empty($section['bottom_copy'])){ echo ''; echo ''; echo ''; } echo ''; echo '
Course NumberTitleCourse TitleClock HoursOutside of School Preparation HoursTotal Clock Hours'.$rightHeading.'
'.$row['course_number'].''.number_format($row['clock_hours'],1).''.number_format($row['outside_hours'],1).''.number_format(($row['clock_hours'] + $row['outside_hours']),1).''.number_format($row['quarter_credit_hours'],1).'
'; if(!empty($row['prerequisite'])) $tbody .= '
Prerequisite: '.$row['prerequisite'].'
'; $tbody .= nl2br(trim($row['description'])); $tbody .= '
'.$totalLine.''.number_format($totalHours,1).''.number_format($totalOutsideHours,1).''.number_format(($totalHours + $totalOutsideHours),1).''.number_format($totalQCHours,1).'
'.$totalTotalLabel.''.$runningTotalHours.''.$runningTotalQCHours.'
'.$section['bottom_copy'].'
'; break; default : $tableAltColor = false; //print_r($section); } } } if($openSection) echo '
'; echo '
'; ?>

Request Info

APPLY NOW

Call Gurnick Academy of Medical Arts

? Is Healthcare Training Right for You? Take the Free Quiz!


Notice: ob_end_flush(): failed to send buffer of zlib output compression (1) in /var/www/vhosts/carnegie-institute.com/dev.carnegie-institute.edu/wp-includes/functions.php on line 5349

Notice: ob_end_flush(): failed to send buffer of zlib output compression (1) in /var/www/vhosts/carnegie-institute.com/dev.carnegie-institute.edu/wp-includes/functions.php on line 5349

Notice: ob_end_flush(): failed to send buffer of zlib output compression (1) in /var/www/vhosts/carnegie-institute.com/dev.carnegie-institute.edu/wp-content/plugins/complianz-gdpr-premium/class-cookie-blocker.php on line 441