vendor/se7enxweb/admin-ui/src/lib/Form/Type/Language/LanguageChoiceType.php line 18

Open in your IDE?
  1. <?php
  2. /**
  3. * @copyright Copyright (C) Ibexa AS. All rights reserved.
  4. * @license For full copyright and license information view LICENSE file distributed with this source code.
  5. */
  6. declare(strict_types=1);
  7. namespace Ibexa\AdminUi\Form\Type\Language;
  8. use Ibexa\AdminUi\Form\Type\ChoiceList\Loader\LanguageChoiceLoader;
  9. /**
  10. * Form Type allowing to select Language.
  11. *
  12. * @todo: This can replace LanguageType in the future but it'd require some changes in the frontend as well.
  13. */
  14. class LanguageChoiceType extends AbstractLanguageChoiceType
  15. {
  16. /**
  17. * @param \Ibexa\AdminUi\Form\Type\ChoiceList\Loader\LanguageChoiceLoader $languageChoiceLoader
  18. */
  19. public function __construct(LanguageChoiceLoader $languageChoiceLoader)
  20. {
  21. parent::__construct($languageChoiceLoader);
  22. }
  23. }
  24. class_alias(LanguageChoiceType::class, 'EzSystems\EzPlatformAdminUi\Form\Type\Language\LanguageChoiceType');