Domain Model

FrontendUserGroup domain model contains the following properties that are validated with annotation. The validation rule for a property is specified based on the appropriate fe_groups table field description. Some properties have been renamed to clarify what data are stored in them. For more information about mapping between a database table and its model see Use arbitrary database tables with an Extbase model.

title

/**
 * Title
 *
 * @var string
 * @Extbase\Validate("NotEmpty")
 * @Extbase\Validate("StringLength", options={"maximum": 50})
 */
protected $title;

description

/**
 * Description
 *
 * @var string|null
 */
protected $description;

subgroups

subgroup field in fe_groups table that stores a comma-separated list of frontend user subgroups.

/**
 * Subgroups
 *
 * @var ObjectStorage<FrontendUserGroup>
 */
protected $subgroups;