mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-12 21:34:25 +00:00
Flags can be added to permissions group to store some metadata. An interface `PermissionsGroupFlagProvider` allow to add some flag to the form which create/ edit permissions groups.
19 lines
269 B
PHP
19 lines
269 B
PHP
<?php
|
|
|
|
|
|
namespace Chill\MainBundle\Form\Utils;
|
|
|
|
/**
|
|
*
|
|
*
|
|
*/
|
|
interface PermissionsGroupFlagProvider
|
|
{
|
|
/**
|
|
* Return an array of flags
|
|
*
|
|
* @return string[] an array. Keys are ignored.
|
|
*/
|
|
public function getPermissionsGroupFlags(): array;
|
|
}
|