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.

26 satır
738B

  1. <?php
  2. namespace Lc\SovBundle\Field;
  3. use EasyCorp\Bundle\EasyAdminBundle\Contracts\Field\FieldInterface;
  4. use EasyCorp\Bundle\EasyAdminBundle\Field\FieldTrait;
  5. use Symfony\Component\Form\Extension\Core\Type\CheckboxType;
  6. /**
  7. * @author La clic ! <contact@laclic.fr>
  8. */
  9. final class ToggleField implements FieldInterface
  10. {
  11. use FieldTrait;
  12. public static function new(string $propertyName, ?string $label = null): self
  13. {
  14. return (new self())
  15. ->setProperty($propertyName)
  16. ->setLabel($label)
  17. ->setTemplatePath('@LcSov/adminlte/crud/field/toggle.html.twig')
  18. ->setFormType(CheckboxType::class);
  19. }
  20. }