Compare commits

..

3 Commits

Author SHA1 Message Date
aslan ceef0fe966 fix lint && prodV1 #38
Tests & Lint & Deploy to Railway / build (2.6.6, 20.x, 8.2) (push) Failing after 5m26s Details
Tests & Lint & Deploy to Railway / deploy (push) Has been skipped Details
2024-03-27 14:47:06 +03:00
ROMANGOLIENKO 22e6a16c32 Merge branch 'prodV1' of http://172.17.254.104/RomanGolienko/Roman_applicant-site into prodV1 2024-03-27 13:45:50 +03:00
ROMANGOLIENKO dd8db9dc4b small design fixes 2024-03-27 13:31:43 +03:00
1 changed files with 21 additions and 14 deletions

View File

@ -4,6 +4,7 @@ namespace App\Services;
use Illuminate\Support\Facades\URL;
// phpcs:disable
class DirectonHtmlBuilder
{
private array $direction;
@ -27,10 +28,10 @@ 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>';
$period .= '<span style="font-family: Geologica-ExtraLight">' . $key . '</span> - ' . '<strong>' . $el . '</strong><br>' ;
}
@ -42,18 +43,20 @@ class DirectonHtmlBuilder
<br>
<div class="fs-4 text-start">';
foreach ($direction['cost_paid_place'] as $key => $el) {
$paid_cost .= '<span style="font-family: Geologica-ExtraLight">' . $key . '</span> - ' . '<strong>' . $el . '</strong><br>';
$paid_cost .= '<span style="font-family: Geologica-ExtraLight">' . $key . '</span> - ' . '<strong>' . $el . '</strong><br>' ;
}
$paid_cost .= '</div></div>';
$EGE = '<div class="col-auto ">
<strong> ЕГЭ </strong>
<br>
<br>
<div class=" d-inline-block p-2 text-start">';
foreach ($direction['entrance_examinations']['ЕГЭ']['Обязательные'] as $key => $el) {
$EGE .= '<span style="font-family: Geologica-ExtraLight">' . $key . '</span> - ' . '<strong>' . $el . '</strong><br>';
$EGE .= '<span style="font-family: Geologica-ExtraLight">' . $key . '</span> - ' . '<strong>' . $el . '</strong><br>' ;
}
$EGE .= '</div></div>';
@ -64,7 +67,7 @@ class DirectonHtmlBuilder
<div class=" d-inline-block p-2 text-start">';
if (array_key_exists('Предметы по выбору', $direction['entrance_examinations']['ЕГЭ'])) {
foreach ($direction['entrance_examinations']['ЕГЭ']['Предметы по выбору'] as $key => $el) {
$po_viboru .= '<span style="font-family: Geologica-ExtraLight">' . $key . '</span> - ' . '<strong>' . $el . '</strong><br>';
$po_viboru .= '<span style="font-family: Geologica-ExtraLight">' . $key . '</span> - ' . '<strong>' . $el . '</strong><br>' ;
}
$po_viboru .= '</div></div>';
} else {
@ -79,7 +82,7 @@ class DirectonHtmlBuilder
<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>';
$SPO .= '<span style="font-family: Geologica-ExtraLight">' . $key . '</span> - ' . '<strong>' . $el . '</strong><br>' ;
}
$SPO .= '</div></div>';
} else {
@ -87,12 +90,13 @@ 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) {
$profile_content .= "<strong> {$forms} </strong> - " . "<span style='font-family: Geologica-ExtraLight'> {$budget_places} </span><br>";
$profile_content .= "<strong> {$forms} </strong> - " . "<span style=\'font-family: Geologica-ExtraLight\'> {$budget_places} </span><br>";
}
$tmp = str_replace(' ', '', $profile_name);
$tmp = str_replace(',', '', $tmp);
@ -109,7 +113,7 @@ class DirectonHtmlBuilder
</div>
</div>
</div>
</div>";
</div>" ;
}
}
// if($direction['name'] == 'Нефтегазовое дело') {
@ -118,6 +122,9 @@ class DirectonHtmlBuilder
// dd($direction);
$filial = '';
if (array_key_exists('Филиал МГТУ (пос. Яблоновский)', $direction['budget_places'])) {
foreach ($direction['budget_places']['Филиал МГТУ (пос. Яблоновский)'] as $profile_name => $profile) {
@ -140,7 +147,7 @@ class DirectonHtmlBuilder
</div>
</div>
</div>
</div>";
</div>" ;
}
} else {
$filial = '<div class="w-100 h-100 d-flex justify-content-center align-items-center" >Этой специальности нет в филиалле</div>';
@ -167,7 +174,7 @@ class DirectonHtmlBuilder
</div>
</div>
</div>
</div>";
</div>" ;
}
}