mirror of https://github.com/4xmen/xshop.git
parent
ade533da84
commit
5bdd998c54
@ -0,0 +1,86 @@
|
||||
<?php
|
||||
|
||||
namespace App\Helpers;
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* @param $lang code like fa
|
||||
* @return string
|
||||
*/
|
||||
function getEmojiLanguagebyCode($lang) {
|
||||
$languages = array(
|
||||
"af" => "🇿🇦", // Afrikaans
|
||||
"sq" => "🇦🇱", // Albanian
|
||||
"am" => "🇪🇹", // Amharic
|
||||
"ar" => "🇸🇦", // Arabic
|
||||
"hy" => "🇦🇲", // Armenian
|
||||
"az" => "🇦🇿", // Azerbaijani
|
||||
"eu" => "🇪🇸", // Basque
|
||||
"be" => "🇧🇾", // Belarusian
|
||||
"bn" => "🇧🇩", // Bengali
|
||||
"bs" => "🇧🇦", // Bosnian
|
||||
"bg" => "🇧🇬", // Bulgarian
|
||||
"ca" => "🇪🇸", // Catalan
|
||||
"zh" => "🇨🇳", // Chinese
|
||||
"hr" => "🇭🇷", // Croatian
|
||||
"cs" => "🇨🇿", // Czech
|
||||
"da" => "🇩🇰", // Danish
|
||||
"nl" => "🇳🇱", // Dutch
|
||||
"en" => "🇺🇸", // English
|
||||
"et" => "🇪🇪", // Estonian
|
||||
"fi" => "🇫🇮", // Finnish
|
||||
"fr" => "🇫🇷", // French
|
||||
"gl" => "🇪🇸", // Galician
|
||||
"ka" => "🇬🇪", // Georgian
|
||||
"de" => "🇩🇪", // German
|
||||
"el" => "🇬🇷", // Greek
|
||||
"gu" => "🇮🇳", // Gujarati
|
||||
"ht" => "🇭🇹", // Haitian
|
||||
"he" => "🇮🇱", // Hebrew
|
||||
"hi" => "🇮🇳", // Hindi
|
||||
"hu" => "🇭🇺", // Hungarian
|
||||
"is" => "🇮🇸", // Icelandic
|
||||
"id" => "🇮🇩", // Indonesian
|
||||
"ga" => "🇮🇪", // Irish
|
||||
"it" => "🇮🇹", // Italian
|
||||
"ja" => "🇯🇵", // Japanese
|
||||
"kk" => "🇰🇿", // Kazakh
|
||||
"ko" => "🇰🇷", // Korean
|
||||
"lv" => "🇱🇻", // Latvian
|
||||
"lt" => "🇱🇹", // Lithuanian
|
||||
"mk" => "🇲🇰", // Macedonian
|
||||
"ms" => "🇲🇾", // Malay
|
||||
"ml" => "🇮🇳", // Malayalam
|
||||
"mt" => "🇲🇹", // Maltese
|
||||
"mn" => "🇲🇳", // Mongolian
|
||||
"no" => "🇳🇴", // Norwegian
|
||||
"ps" => "🇦🇫", // Pashto
|
||||
"fa" => "🇮🇷", // Persian
|
||||
"pl" => "🇵🇱", // Polish
|
||||
"pt" => "🇵🇹", // Portuguese
|
||||
"ro" => "🇷🇴", // Romanian
|
||||
"ru" => "🇷🇺", // Russian
|
||||
"sr" => "🇷🇸", // Serbian
|
||||
"sk" => "🇸🇰", // Slovak
|
||||
"sl" => "🇸🇮", // Slovenian
|
||||
"es" => "🇪🇸", // Spanish
|
||||
"sw" => "🇰🇪", // Swahili
|
||||
"sv" => "🇸🇪", // Swedish
|
||||
"ta" => "🇮🇳", // Tamil
|
||||
"te" => "🇮🇳", // Telugu
|
||||
"th" => "🇹🇭", // Thai
|
||||
"tr" => "🇹🇷", // Turkish
|
||||
"uk" => "🇺🇦", // Ukrainian
|
||||
"ur" => "🇵🇰", // Urdu
|
||||
"uz" => "🇺🇿", // Uzbek
|
||||
"vi" => "🇻🇳", // Vietnamese
|
||||
"cy" => "🇬🇧" // Welsh
|
||||
);
|
||||
$lang = strtolower($lang);
|
||||
if (array_key_exists($lang, $languages)) {
|
||||
return $languages[$lang];
|
||||
} else {
|
||||
return "❓";
|
||||
}
|
||||
}
|
File diff suppressed because one or more lines are too long
@ -0,0 +1,20 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Middleware;
|
||||
|
||||
use Closure;
|
||||
use Illuminate\Http\Request;
|
||||
use Symfony\Component\HttpFoundation\Response;
|
||||
|
||||
class Acl
|
||||
{
|
||||
/**
|
||||
* Handle an incoming request.
|
||||
*
|
||||
* @param \Closure(\Illuminate\Http\Request): (\Symfony\Component\HttpFoundation\Response) $next
|
||||
*/
|
||||
public function handle(Request $request, Closure $next): Response
|
||||
{
|
||||
return $next($request);
|
||||
}
|
||||
}
|
@ -1,23 +0,0 @@
|
||||
<?php
|
||||
|
||||
namespace Database\Factories;
|
||||
|
||||
use Illuminate\Database\Eloquent\Factories\Factory;
|
||||
|
||||
/**
|
||||
* @extends \Illuminate\Database\Eloquent\Factories\Factory<\App\Models\Adv>
|
||||
*/
|
||||
class AdvFactory extends Factory
|
||||
{
|
||||
/**
|
||||
* Define the model's default state.
|
||||
*
|
||||
* @return array<string, mixed>
|
||||
*/
|
||||
public function definition(): array
|
||||
{
|
||||
return [
|
||||
//
|
||||
];
|
||||
}
|
||||
}
|
@ -1,23 +0,0 @@
|
||||
<?php
|
||||
|
||||
namespace Database\Factories;
|
||||
|
||||
use Illuminate\Database\Eloquent\Factories\Factory;
|
||||
|
||||
/**
|
||||
* @extends \Illuminate\Database\Eloquent\Factories\Factory<\App\Models\Credit>
|
||||
*/
|
||||
class CreditFactory extends Factory
|
||||
{
|
||||
/**
|
||||
* Define the model's default state.
|
||||
*
|
||||
* @return array<string, mixed>
|
||||
*/
|
||||
public function definition(): array
|
||||
{
|
||||
return [
|
||||
//
|
||||
];
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue