EGE bug fix #56
|
@ -55,10 +55,16 @@ class DirectonHtmlBuilder
|
||||||
<br>
|
<br>
|
||||||
|
|
||||||
<div class=" d-inline-block p-2 text-start">';
|
<div class=" d-inline-block p-2 text-start">';
|
||||||
foreach ($direction['entrance_examinations']['ЕГЭ']['Обязательные'] as $key => $el) {
|
if (array_key_exists('ЕГЭ', $direction['entrance_examinations'])){
|
||||||
$EGE .= '<span style="font-family: Geologica-ExtraLight">' . $key . '</span> - ' . '<strong>' . $el . '</strong><br>' ;
|
foreach ($direction['entrance_examinations']['ЕГЭ']['Обязательные'] as $key => $el) {
|
||||||
|
$EGE .= '<span style="font-family: Geologica-ExtraLight">' . $key . '</span> - ' . '<strong>' . $el . '</strong><br>' ;
|
||||||
|
}
|
||||||
|
$EGE .= '</div></div>';
|
||||||
|
} else {
|
||||||
|
$EGE = '';
|
||||||
}
|
}
|
||||||
$EGE .= '</div></div>';
|
|
||||||
|
|
||||||
|
|
||||||
$po_viboru = '<div class="col-auto ">
|
$po_viboru = '<div class="col-auto ">
|
||||||
<strong> Предметы по выбору </strong>
|
<strong> Предметы по выбору </strong>
|
||||||
|
|
|
@ -55,11 +55,14 @@ class DirectonHtmlBuilderForCalculator
|
||||||
<br>
|
<br>
|
||||||
<br>
|
<br>
|
||||||
<div class=" d-inline-block p-2 text-start">';
|
<div class=" d-inline-block p-2 text-start">';
|
||||||
foreach ($direction['entrance_examinations']['ЕГЭ']['Обязательные'] as $key => $el) {
|
if (array_key_exists('ЕГЭ', $direction['entrance_examinations'])) {
|
||||||
$EGE .= '<span style="font-family: Geologica-ExtraLight">' . $key . '</span> - ' . '<strong>' . $el . '</strong><br>' ;
|
foreach ($direction['entrance_examinations']['ЕГЭ']['Обязательные'] as $key => $el) {
|
||||||
|
$EGE .= '<span style="font-family: Geologica-ExtraLight">' . $key . '</span> - ' . '<strong>' . $el . '</strong><br>';
|
||||||
|
}
|
||||||
|
$EGE .= '</div></div>';
|
||||||
|
} else {
|
||||||
|
$EGE = '';
|
||||||
}
|
}
|
||||||
$EGE .= '</div></div>';
|
|
||||||
|
|
||||||
$po_viboru = '<div class="col-auto ">
|
$po_viboru = '<div class="col-auto ">
|
||||||
<strong> Предметы по выбору </strong>
|
<strong> Предметы по выбору </strong>
|
||||||
<br>
|
<br>
|
||||||
|
|
Loading…
Reference in New Issue