This commit is contained in:
aslan 2024-03-27 14:03:46 +03:00
parent bd897c90f5
commit 6f50c7ff07
1 changed files with 27 additions and 38 deletions

View File

@ -27,7 +27,7 @@ class DirectonHtmlBuilder
}
$education_form = substr($education_form, 0, -2);
// phpcs:disable
$period = '<br>';
foreach ($direction['period'] as $key => $el) {
$period .= '<span style="font-family: Geologica-ExtraLight">' . $key . '</span> - ' . '<strong>' . $el . '</strong><br>';
@ -47,8 +47,6 @@ class DirectonHtmlBuilder
$paid_cost .= '</div></div>';
$EGE = '<div class="col-auto ">
<strong> ЕГЭ </strong>
<br>
@ -80,7 +78,6 @@ class DirectonHtmlBuilder
<br>
<div class=" d-inline-block p-2 text-start">';
if (array_key_exists('СПО', $direction['entrance_examinations'])) {
foreach ($direction['entrance_examinations']['СПО']['Обязательные'] as $key => $el) {
$SPO .= '<span style="font-family: Geologica-ExtraLight">' . $key . '</span> - ' . '<strong>' . $el . '</strong><br>';
}
@ -92,7 +89,6 @@ class DirectonHtmlBuilder
$mgtu = '';
if (array_key_exists('МГТУ', $direction['budget_places'])) {
foreach ($direction['budget_places']['МГТУ'] as $profile_name => $profile) {
$profile_content = '';
foreach ($profile as $forms => $budget_places) {
@ -122,12 +118,8 @@ class DirectonHtmlBuilder
// dd($direction);
$filial = '';
if (array_key_exists('Филиал МГТУ (пос. Яблоновский)', $direction['budget_places'])) {
foreach ($direction['budget_places']['Филиал МГТУ (пос. Яблоновский)'] as $profile_name => $profile) {
$profile_content = '';
foreach ($profile as $forms => $budget_places) {
@ -150,14 +142,12 @@ class DirectonHtmlBuilder
</div>
</div>";
}
}
else {
} else {
$filial = '<div class="w-100 h-100 d-flex justify-content-center align-items-center" >Этой специальности нет в филиалле</div>';
}
$paid_places_content = '';
foreach ($direction['paid_places'] as $institution) {
foreach ($institution as $profile_name => $profile) {
$profile_content = '';
foreach ($profile as $forms => $paid_places) {
$profile_content .= "<strong> {$forms} </strong> - " . "<span style=\'font-family: Geologica-ExtraLight\'> {$paid_places} </span><br>";
@ -178,7 +168,6 @@ class DirectonHtmlBuilder
</div>
</div>
</div>";
}
}