custom/plugins/HelmaTheme/src/HelmaTheme.php line 15

Open in your IDE?
  1. <?php declare(strict_types=1);
  2. namespace HelmaTheme;
  3. use Shopware\Core\Framework\Plugin;
  4. use Shopware\Storefront\Framework\ThemeInterface;
  5. use Shopware\Core\Framework\Uuid\Uuid;
  6. use Shopware\Core\Framework\Plugin\Context\InstallContext;
  7. use Shopware\Core\Framework\Plugin\Context\UpdateContext;
  8. use Shopware\Core\Framework\Plugin\Context\UninstallContext;
  9. use Shopware\Core\Framework\DataAbstractionLayer\Search\Criteria;
  10. use Shopware\Core\Framework\DataAbstractionLayer\Search\Filter\EqualsFilter;
  11. use Shopware\Core\System\CustomField\CustomFieldTypes;
  12. class HelmaTheme extends Plugin implements ThemeInterface
  13. {
  14.     public function getThemeConfigPath(): string
  15.     {
  16.         return 'theme.json';
  17.     }
  18.      /**
  19.      * Install
  20.      *
  21.      * @param InstallContext $context
  22.      * @return void
  23.      */
  24.     public function install(InstallContext $context): void
  25.     {
  26.         $this->createAttribute($context);
  27.         parent::install($context);
  28.     }
  29.        /**
  30.      * Update
  31.      *
  32.      * @param UpdateContext $context
  33.      * @return void
  34.      */
  35.     public function update(UpdateContext $context): void
  36.     {
  37.         parent::update($context);
  38.     }
  39.  /**
  40.      * Uninstall
  41.      *
  42.      * @param UninstallContext $context
  43.      * @return void
  44.      */
  45.     public function uninstall(UninstallContext $context): void
  46.     {
  47.         $this->removeAttribute($context);
  48.         parent::uninstall($context);
  49.     }
  50.      /**
  51.      * Create attribute
  52.      *
  53.      * @param InstallContext $context
  54.      * @return void
  55.      */
  56.     protected function createAttribute(InstallContext $context)
  57.     {
  58.         // Get custom field repository
  59.         $customFieldSetRepository $this->container->get('custom_field_set.repository');
  60.         // Create new custom field
  61.         $customFieldSetRepository->create([
  62.             [
  63.                 'id' => Uuid::randomHex(),
  64.                 'name' => 'helmatheme',
  65.                 'config' => [
  66.                     'label' => [
  67.                         'de-DE' => 'helmatheme',
  68.                         'en-GB' => 'helmatheme',
  69.                     ],
  70.                     'translated' => true,
  71.                 ],
  72.                 'relations' => [
  73.                     [
  74.                        'id' => Uuid::randomHex(),
  75.                        'entityName' => 'category',
  76.                     ],
  77.                 ],
  78.                 // 'customFields' => [
  79.                 //     [
  80.                 //         'name' => 'helmatheme_login_required',
  81.                 //         'type' => CustomFieldTypes::BOOL ,
  82.                 //         'config' => [
  83.                 //             'componentName' => 'sw-switch-field',
  84.                 //             'type' => CustomFieldTypes::BOOL ,
  85.                 //             'label' => [
  86.                 //                 'de-DE' => 'Login Required - Allow only for logged in users',
  87.                 //                 'en-GB' => 'Login Required - Allow only for logged in users',
  88.                 //             ],
  89.                 //             'customFieldType' => CustomFieldTypes::BOOL ,
  90.                 //             'customFieldPosition' => 1,
  91.                 //             'placeholder' => [
  92.                 //                 'de-DE' => null,
  93.                 //                 'en-GB' => null,
  94.                 //             ],
  95.                 //             'helpText' => [
  96.                 //                 'de-DE' => 'Login Required - Allow only for logged in users',
  97.                 //                 'en-GB' => 'Login Required - Allow only for logged in users',
  98.                 //             ],
  99.                 //             'validation' => null,
  100.                 //         ],
  101.                 //     ],
  102.                 // ],
  103.             ],
  104.         ], $context->getContext());
  105.     }
  106.     /**
  107.      * Remove attribute
  108.      *
  109.      * @param UninstallContext $context
  110.      * @return void
  111.      */
  112.     protected function removeAttribute(UninstallContext $context)
  113.     {
  114.         // Get custom field repository
  115.         $customFieldSetRepository $this->container->get('custom_field_set.repository');
  116.         // Create new search criteria by name
  117.         $criteria = new Criteria();
  118.         $criteria->addFilter(
  119.             new EqualsFilter('name''helmatheme')
  120.         );
  121.         // Search for imos custom field set
  122.         $result $customFieldSetRepository->search($criteria$context->getContext());
  123.         // If imos custom field set is available
  124.         if ($result->count() > 0) {
  125.             $deleteIds = [];
  126.             /** @var CustomFieldSetEntity $entity */
  127.             foreach ($result->getEntities() as $entity) {
  128.                 // Collect ids for deletion
  129.                 $deleteIds[] = ['id' => $entity->getId()];
  130.             }
  131.     
  132.             // Delete imos custom field set
  133.             $customFieldSetRepository->delete($deleteIds$context->getContext());
  134.         }
  135.     }
  136. }