src/Manager/ConfigurationManager.php line 20

Open in your IDE?
  1. <?php
  2. namespace App\Manager;
  3. use App\Entity\Configuration;
  4. use App\Entity\ConfigurationItemParent;
  5. use App\Entity\ConfigurationItemValue;
  6. use App\Entity\ConfigurationType;
  7. use Doctrine\ORM\EntityManagerInterface;
  8. class ConfigurationManager
  9. {
  10.     public function __construct(private EntityManagerInterface $manager)
  11.     {
  12.     }
  13.     public function createConfiguration(string $type): Configuration
  14.     {
  15.         $configuration = (new Configuration())
  16.             ->setType($this->manager->getRepository(ConfigurationType::class)->findOneByCode($type))
  17.             ->setNotifyLevel(0)
  18.             ->addItem(new ConfigurationItemValue(name'time'value0))
  19.             ->addItem(new ConfigurationItemValue(name'step'value1))
  20.             ->addItem(new ConfigurationItemValue(name'complete'value0))
  21.             ->addItem(new ConfigurationItemValue(name'chrono_number'value''))
  22.             ->addItem(new ConfigurationItemValue(name'grc'value''))
  23.             ->addItem(new ConfigurationItemParent(name'products'values: [
  24.                 new ConfigurationItemValue(name'identifiers'value''),
  25.                 new ConfigurationItemValue(name'names'value''),
  26.                 new ConfigurationItemValue(name'configurations'value''),
  27.             ]))
  28.             ->addItem(new ConfigurationItemParent(name'transport'values: []))
  29.             ->addItem(new ConfigurationItemParent(name'project_discovery'values: []))
  30.             ->addItem(new ConfigurationItemParent('configurator_1'values: []));
  31.         $this->manager->persist($configuration);
  32.         $this->manager->flush();
  33.         return $configuration;
  34.     }
  35. }