You are here

public static function CommentCore::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/CommentCore.php, line 38
Fasttoggle Comment Status

Class

CommentCore
Abstract interface for groups of 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 $definition
    ->getProvider() == 'comment';
}