Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

86 Zeilen
3.2KB

  1. <?php
  2. namespace Lc\SovBundle\Field;
  3. use EasyCorp\Bundle\EasyAdminBundle\Contracts\Field\FieldInterface;
  4. use EasyCorp\Bundle\EasyAdminBundle\Field\FieldTrait;
  5. use Lc\SovBundle\Form\Common\FileManagerType;
  6. use Symfony\Component\Form\Extension\Core\Type\CollectionType;
  7. class GalleryManagerField implements FieldInterface
  8. {
  9. use FieldTrait;
  10. public const OPTION_ALLOW_ADD = 'allowAdd';
  11. public const OPTION_ALLOW_DELETE = 'allowDelete';
  12. public const OPTION_ENTRY_IS_COMPLEX = 'entryIsComplex';
  13. public const OPTION_ENTRY_TYPE = 'entryType';
  14. public const OPTION_SHOW_ENTRY_LABEL = 'showEntryLabel';
  15. public static function new(string $propertyName, ?string $label = null): self
  16. {
  17. return (new self())
  18. ->setProperty($propertyName)
  19. ->setLabel($label)
  20. ->setTemplatePath('@LcSov/adminlte/crud/field/collection.html.twig')
  21. ->setFormType(CollectionType::class)
  22. ->addCssClass('field-collection')
  23. /*->addWebpackEncoreEntries('adminlte-field-collection')
  24. ->addWebpackEncoreEntries('adminlte-field-filemanager')*/
  25. ->setFormTypeOption('allow_add', true)
  26. ->setFormTypeOption('allow_delete', true)
  27. ->setFormTypeOption('entry_options', array('label'=> false))
  28. ->setFormTypeOption('entry_type', FileManagerType::class)
  29. ->setFormTypeOption('attr', array('class'=> 'field-collection-group'))
  30. ->setFormTypeOption('row_attr', array('data-sortable'=> true))
  31. ->setCustomOption('managerDir', 'image')
  32. ->setCustomOption('type', 'image')
  33. ->hideOnIndex();
  34. //->setEntryType(FileManagerType::class);
  35. //->setFormTypeOption('show_entry_label', false);
  36. }
  37. public function allowAdd(bool $allow = true): self
  38. {
  39. $this->setCustomOption(self::OPTION_ALLOW_ADD, $allow);
  40. return $this;
  41. }
  42. public function allowDelete(bool $allow = true): self
  43. {
  44. $this->setCustomOption(self::OPTION_ALLOW_DELETE, $allow);
  45. return $this;
  46. }
  47. /**
  48. * Set this option to TRUE if the collection items are complex form types
  49. * composed of several form fields (EasyAdmin applies a special rendering to make them look better).
  50. */
  51. public function setEntryIsComplex(bool $isComplex): self
  52. {
  53. $this->setCustomOption(self::OPTION_ENTRY_IS_COMPLEX, $isComplex);
  54. return $this;
  55. }
  56. public function setEntryType(string $formTypeFqcn): self
  57. {
  58. $this->setCustomOption(self::OPTION_ENTRY_TYPE, $formTypeFqcn);
  59. return $this;
  60. }
  61. public function showEntryLabel(bool $showLabel = true): self
  62. {
  63. $this->setCustomOption(self::OPTION_SHOW_ENTRY_LABEL, $showLabel);
  64. return $this;
  65. }
  66. }