Current File : //var/www/vinorea/src/PrestaShopBundle/Form/Admin/Type/TranslatorAwareType.php |
<?php
/**
* Copyright since 2007 PrestaShop SA and Contributors
* PrestaShop is an International Registered Trademark & Property of PrestaShop SA
*
* NOTICE OF LICENSE
*
* This source file is subject to the Open Software License (OSL 3.0)
* that is bundled with this package in the file LICENSE.md.
* It is also available through the world-wide-web at this URL:
* https://opensource.org/licenses/OSL-3.0
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@prestashop.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to https://devdocs.prestashop.com/ for more information.
*
* @author PrestaShop SA and Contributors <contact@prestashop.com>
* @copyright Since 2007 PrestaShop SA and Contributors
* @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
*/
namespace PrestaShopBundle\Form\Admin\Type;
use Symfony\Contracts\Translation\TranslatorInterface;
/**
* PrestaShop forms needs custom domain name for field constraints
* This feature is not available in Symfony so we need to inject the translator
* for constraints messages only.
*/
abstract class TranslatorAwareType extends CommonAbstractType
{
/**
* @var TranslatorInterface
*/
private $translator;
/**
* All languages available on shop. Used for translations.
*
* @param array<int, array<string, mixed>> $locales
*/
protected $locales;
public function __construct(TranslatorInterface $translator, array $locales)
{
$this->translator = $translator;
$this->locales = $locales;
}
/**
* Get the translated chain from key.
*
* @param string $key the key to be translated
* @param string $domain the domain to be selected
* @param array $parameters Optional, pass parameters if needed (uncommon)
*
* @returns string
*/
protected function trans($key, $domain, $parameters = [])
{
return $this->translator->trans($key, $parameters, $domain);
}
/**
* @return TranslatorInterface
*/
protected function getTranslator(): TranslatorInterface
{
return $this->translator;
}
/**
* Get locales to be used in form type.
*
* @return array
*/
protected function getLocaleChoices()
{
$locales = [];
foreach ($this->locales as $locale) {
$locales[$locale['name']] = $locale['iso_code'];
}
return $locales;
}
}