This repository has been archived on 2025-07-15. You can view files and clone it, but cannot push or open issues or pull requests.
Files
lean_in_world/app/Http/Helpers/custom_helper.php
meghamalore eed0ce11d2 first commit
2024-07-04 16:57:26 +05:30

53 lines
1.3 KiB
PHP

<?php
if (!function_exists('getFlagFilename')) {
function getFlagFilename($countryName)
{
// Define your mapping logic here
$countryFlagMap = [
'United States' => 'us.svg',
'India' => 'in.svg',
'Australia' => 'au.svg',
'United Kingdom' => 'uk.svg',
'Germany' => 'de.svg',
'France' => 'fr.svg',
'China' => 'cn.svg',
'Japan' => 'jp.svg',
'Brazil' => 'br.svg',
'South Korea' => 'kr.svg',
'Italy' => 'it.svg',
'Spain' => 'es.svg',
'Russia' => 'ru.svg',
'Mexico' => 'mx.svg',
'Argentina' => 'ar.svg',
'Netherlands' => 'nl.svg',
'Sweden' => 'se.svg',
'Turkey' => 'tr.svg',
'Singapore' => 'sg.svg',
'Greece' => 'gr.svg',
'Norway' => 'no.svg',
'Canada' => 'ca.svg',
'New Zealand' => 'nz.svg',
'Portugal' => 'pt.svg',
'Belgium' => 'be.svg',
'Europe' => 'europe.svg',
'Ireland' => 'ie.svg',
'Poland' => 'pl.svg',
'Denmark' => 'dk.svg',
'Czech Republic' => 'cz.svg',
'Hungary' => 'hu.svg',
'Finland' => 'fi.svg',
'Croatia' => 'hr.svg',
'Bulgaria' => 'bg.svg',
'Romania' => 'ro.svg',
'Ukraine' => 'ua.svg',
'Switzerland' => 'ch.svg',
'Austria' => 'at.svg',
// Add even more countries here
];
return isset($countryFlagMap[$countryName]) ? $countryFlagMap[$countryName] : null;
}
}