custom/plugins/SwagLanguagePack/src/SwagLanguagePack.php line 18

Open in your IDE?
  1. <?php declare(strict_types=1);
  2. /*
  3.  * (c) shopware AG <info@shopware.com>
  4.  * For the full copyright and license information, please view the LICENSE
  5.  * file that was distributed with this source code.
  6.  */
  7. namespace Swag\LanguagePack;
  8. use Doctrine\DBAL\Connection;
  9. use Shopware\Core\Framework\Api\Acl\Role\AclRoleDefinition;
  10. use Shopware\Core\Framework\DataAbstractionLayer\EntityRepositoryInterface;
  11. use Shopware\Core\Framework\Plugin;
  12. use Shopware\Core\Framework\Plugin\Context\DeactivateContext;
  13. use Shopware\Core\Framework\Plugin\Context\UninstallContext;
  14. use Swag\LanguagePack\Util\Lifecycle\Lifecycle;
  15. class SwagLanguagePack extends Plugin
  16. {
  17.     public const SUPPORTED_LANGUAGES = [
  18.         'Bahasa Indonesia' => 'id-ID',
  19.         'Bosanski' => 'bs-BA',
  20.         'Čeština' => 'cs-CZ',
  21.         'Dansk' => 'da-DK',
  22.         'Español' => 'es-ES',
  23.         'Suomi' => 'fi-FI',
  24.         'Français' => 'fr-FR',
  25.         'Magyar' => 'hu-HU',
  26.         'Italiano' => 'it-IT',
  27.         'Latviešu' => 'lv-LV',
  28.         'Nederlands' => 'nl-NL',
  29.         'Norsk' => 'nn-NO',
  30.         'Polski' => 'pl-PL',
  31.         'Português' => 'pt-PT',
  32.         'Română' => 'ro-MD',
  33.         'Русский' => 'ru-RU',
  34.         'Svenska' => 'sv-SE',
  35.         'Tiếng Việt Nam' => 'vi-VN',
  36.     ];
  37.     public const BASE_SNIPPET_SET_LOCALES = [
  38.         'bs-BA',
  39.         'cs-CZ',
  40.         'da-DK',
  41.         'es-ES',
  42.         'fi-FI',
  43.         'fr-FR',
  44.         'hu-HU',
  45.         'id-ID',
  46.         'it-IT',
  47.         'lv-LV',
  48.         'nl-NL',
  49.         'nn-NO',
  50.         'pl-PL',
  51.         'pt-PT',
  52.         'ro-MD',
  53.         'ru-RU',
  54.         'sv-SE',
  55.         'vi-VN',
  56.     ];
  57.     public function enrichPrivileges(): array
  58.     {
  59.         return [
  60.             AclRoleDefinition::ALL_ROLE_KEY => [
  61.                 'swag_language_pack_language:read',
  62.                 'language:read',
  63.             ],
  64.             'language.editor' => [
  65.                 'swag_language_pack_language:update',
  66.             ],
  67.         ];
  68.     }
  69.     public function deactivate(DeactivateContext $deactivateContext): void
  70.     {
  71.         parent::deactivate($deactivateContext);
  72.         /** @var Connection $connection */
  73.         $connection $this->container->get(Connection::class);
  74.         /** @var EntityRepositoryInterface $languageRepository */
  75.         $languageRepository $this->container->get('language.repository');
  76.         (new Lifecycle($connection$languageRepository))->deactivate($deactivateContext);
  77.     }
  78.     public function uninstall(UninstallContext $uninstallContext): void
  79.     {
  80.         parent::uninstall($uninstallContext);
  81.         /** @var Connection $connection */
  82.         $connection $this->container->get(Connection::class);
  83.         /** @var EntityRepositoryInterface $languageRepository */
  84.         $languageRepository $this->container->get('language.repository');
  85.         (new Lifecycle($connection$languageRepository))->uninstall($uninstallContext);
  86.     }
  87. }