You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
879B

  1. <?php
  2. namespace Lc\CaracoleBundle\Factory\Setting;
  3. use Lc\CaracoleBundle\Container\Setting\SectionSettingContainer;
  4. use Lc\CaracoleBundle\Model\Section\SectionInterface;
  5. use Lc\SovBundle\Factory\AbstractFactory;
  6. use Lc\SovBundle\Model\File\FileInterface;
  7. class SectionSettingFactory extends AbstractFactory
  8. {
  9. public function create(
  10. SectionInterface $section,
  11. string $name,
  12. string $text = null,
  13. \DateTime $date = null,
  14. FileInterface $file = null
  15. ) {
  16. $class = SectionSettingContainer::getEntityFqcn();
  17. $merchantSetting = new $class;
  18. $merchantSetting->setSection($section);
  19. $merchantSetting->setName($name);
  20. $merchantSetting->setText($text);
  21. $merchantSetting->setDate($date);
  22. $merchantSetting->setFile($file);
  23. return $merchantSetting;
  24. }
  25. }