public function Individual::getPrimaryPhone in CRM Core 8
Same name and namespace in other branches
- 8.3 modules/crm_core_contact/src/Entity/Individual.php \Drupal\crm_core_contact\Entity\Individual::getPrimaryPhone()
- 8.2 modules/crm_core_contact/src/Entity/Individual.php \Drupal\crm_core_contact\Entity\Individual::getPrimaryPhone()
Gets the primary phone.
Return value
\Drupal\Core\Field\FieldItemListInterface|\Drupal\Core\TypedData\TypedDataInterface The phone property object.
File
- modules/
crm_core_contact/ src/ Entity/ Individual.php, line 141
Class
- Individual
- CRM Individual Entity Class.
Namespace
Drupal\crm_core_contact\EntityCode
public function getPrimaryPhone() {
return $this
->getPrimaryField('phone');
}