class CRM_Contact_DAO_Contact in CiviCRM Entity 8.3
Database access object for the Contact entity.
Hierarchy
- class \CRM_Contact_DAO_Contact
Expanded class hierarchy of CRM_Contact_DAO_Contact
4 string references to 'CRM_Contact_DAO_Contact'
- CivicrmEntityTestBase::sampleAddressGetFields in tests/
src/ Kernel/ CivicrmEntityTestBase.php - CivicrmEntityTestBase::sampleContactGetFields in tests/
src/ Kernel/ CivicrmEntityTestBase.php - Json returned from sample Contact getfields.
- CivicrmEntityTestBase::sampleEventsGetFields in tests/
src/ Kernel/ CivicrmEntityTestBase.php - Json returned from sample Event getfields.
- FieldDefinitionProvider::getBaseFieldDefinition in src/
Entity/ FieldDefinitionProvider.php - Gets an entity base field definition from a CiviCRM field definition.
File
- tests/
src/ CiviCrmDaoStubs.php, line 7
View source
class CRM_Contact_DAO_Contact {
/**
* Static instance to hold the table name.
*
* @var string
*/
public static $_tableName = 'civicrm_contact';
/**
* Returns the names of this table
*
* @return string
*/
public static function getTableName() {
return self::$_tableName;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
CRM_Contact_DAO_Contact:: |
public static | property | Static instance to hold the table name. | |
CRM_Contact_DAO_Contact:: |
public static | function | Returns the names of this table |