Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /**
- * Contact visibility.
- * @Expose
- * @JMS\Groups({"ROLE_USER","ROLE_ADMIN"})
- * @ORM\Column(type="boolean", nullable=true)
- */
- protected $visibleAll;
- /**
- * Contact visibility.
- * @Expose
- * @Assert\Expression(
- * "this.getVisibleAll() != true and value == true)",
- * message="Contact must be visible to all if you want to allow to edit it"
- * )
- * @JMS\Groups({"ROLE_USER","ROLE_ADMIN"})
- * @ORM\Column(type="boolean", nullable=true)
- */
- protected $editableAll;
Advertisement
Add Comment
Please, Sign In to add comment