mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-15 23:52:33 +01:00
84 lines
2.2 KiB
PHP
84 lines
2.2 KiB
PHP
<?php
|
|
/**
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
*
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
*
|
|
* @copyright Copyright (c) 2024. Invoice Ninja LLC (https://invoiceninja.com)
|
|
*
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
|
*/
|
|
|
|
namespace App\Utils;
|
|
|
|
use Illuminate\Support\Facades\Cache;
|
|
use App\Models\PaymentTerm;
|
|
use Illuminate\Support\Str;
|
|
|
|
class TranslationHelper
|
|
{
|
|
// public static function getIndustries()
|
|
// {
|
|
|
|
// /** @var \Illuminate\Support\Collection<\App\Models\Currency> */
|
|
// $industries = app('industries');
|
|
|
|
// return $industries->each(function ($industry) {
|
|
// $industry->name = ctrans('texts.industry_'.$industry->name);
|
|
// })->sortBy(function ($industry) {
|
|
// return $industry->name;
|
|
// });
|
|
// }
|
|
|
|
public static function getCountries()
|
|
{
|
|
|
|
/** @var \Illuminate\Support\Collection<\App\Models\Country> */
|
|
return app('countries');
|
|
|
|
}
|
|
|
|
// public static function getPaymentTypes()
|
|
// {
|
|
|
|
// /** @var \Illuminate\Support\Collection<\App\Models\PaymentType> */
|
|
// // $payment_types = app('payment_types');
|
|
|
|
// return \App\Models\PaymentType::all()->each(function ($pType) {
|
|
// $pType->name = ctrans('texts.payment_type_'.$pType->name);
|
|
// })->sortBy(function ($pType) {
|
|
// return $pType->name;
|
|
// });
|
|
// }
|
|
|
|
// public static function getLanguages()
|
|
// {
|
|
|
|
// /** @var \Illuminate\Support\Collection<\App\Models\Language> */
|
|
// // $languages = app('languages');
|
|
|
|
// return \App\Models\Language::all()->each(function ($lang) {
|
|
// $lang->name = ctrans('texts.lang_'.$lang->name);
|
|
// })->sortBy(function ($lang) {
|
|
// return $lang->name;
|
|
// });
|
|
// }
|
|
|
|
public static function getCurrencies()
|
|
{
|
|
|
|
/** @var \Illuminate\Support\Collection<\App\Models\Currency> */
|
|
return app('currencies');
|
|
|
|
}
|
|
|
|
// public static function getPaymentTerms()
|
|
// {
|
|
// return PaymentTerm::getCompanyTerms()->map(function ($term) {
|
|
// $term['name'] = ctrans('texts.payment_terms_net').' '.$term['num_days'];
|
|
|
|
// return $term;
|
|
// });
|
|
// }
|
|
}
|