You are here

public static function NodeCore::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/NodeCore.php, line 40
Fasttoggle Node Status

Class

NodeCore
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 $definition
    ->getProvider() == 'node';
}