You are here

public static function UserRoles::groupMatches in Fasttoggle 8.2

Return whether this setting matches the provided field definition.

Parameters

$definition: The field definition for which a match is being sought.

Return value

boolean Whether this plugin handles the definition.

Overrides SettingGroupInterface::groupMatches

File

src/Plugin/SettingGroup/UserRoles.php, line 39
Fasttoggle User Role

Class

UserRoles
Abstract interface for settings. Plugin strings are used for quick filtering without the need to instantiate the class.

Namespace

Drupal\fasttoggle\Plugin\SettingGroup

Code

public static function groupMatches($definition) {
  return true;
}