You are here

public function Matcher::getPluginTitle in CRM Core 8

Same name and namespace in other branches
  1. 8.3 modules/crm_core_match/src/Entity/Matcher.php \Drupal\crm_core_match\Entity\Matcher::getPluginTitle()
  2. 8.2 modules/crm_core_match/src/Entity/Matcher.php \Drupal\crm_core_match\Entity\Matcher::getPluginTitle()

Gets plugin title.

Return value

string Plugin title.

Overrides MatcherConfigInterface::getPluginTitle

File

modules/crm_core_match/src/Entity/Matcher.php, line 103

Class

Matcher
CRM Matcher Entity Class.

Namespace

Drupal\crm_core_match\Entity

Code

public function getPluginTitle() {
  return $this
    ->getPlugin()
    ->getPluginDefinition()['label'];
}