You are here

public function NameFieldHandler::getPropertyNames in CRM Core 8.2

Same name and namespace in other branches
  1. 8.3 modules/crm_core_match/src/Plugin/crm_core_match/field/NameFieldHandler.php \Drupal\crm_core_match\Plugin\crm_core_match\field\NameFieldHandler::getPropertyNames()
  2. 8 modules/crm_core_match/src/Plugin/crm_core_match/field/NameFieldHandler.php \Drupal\crm_core_match\Plugin\crm_core_match\field\NameFieldHandler::getPropertyNames()

Returns the names of the field's subproperties.

Return value

string[] The property names.

Overrides FieldHandlerBase::getPropertyNames

File

modules/crm_core_match/src/Plugin/crm_core_match/field/NameFieldHandler.php, line 39

Class

NameFieldHandler
Class for evaluating name fields.

Namespace

Drupal\crm_core_match\Plugin\crm_core_match\field

Code

public function getPropertyNames() {
  return [
    'title',
    'given',
    'middle',
    'family',
    'generational',
    'credentials',
  ];
}