You are here

public function FieldHandlerBase::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/FieldHandlerBase.php \Drupal\crm_core_match\Plugin\crm_core_match\field\FieldHandlerBase::getPropertyNames()
  2. 8 modules/crm_core_match/src/Plugin/crm_core_match/field/FieldHandlerBase.php \Drupal\crm_core_match\Plugin\crm_core_match\field\FieldHandlerBase::getPropertyNames()

Returns the names of the field's subproperties.

Return value

string[] The property names.

Overrides FieldHandlerInterface::getPropertyNames

1 method overrides FieldHandlerBase::getPropertyNames()
NameFieldHandler::getPropertyNames in modules/crm_core_match/src/Plugin/crm_core_match/field/NameFieldHandler.php
Returns the names of the field's subproperties.

File

modules/crm_core_match/src/Plugin/crm_core_match/field/FieldHandlerBase.php, line 90

Class

FieldHandlerBase
Class FieldHandlerBase.

Namespace

Drupal\crm_core_match\Plugin\crm_core_match\field

Code

public function getPropertyNames() {
  return array(
    'value',
  );
}