__table = 'civicrm_relationship_cache'; parent::__construct(); } /** * Returns localized title of this entity. * * @param bool $plural * Whether to return the plural version of the title. */ public static function getEntityTitle($plural = FALSE) { return $plural ? ts('Relationship Caches') : ts('Relationship Cache'); } /** * Returns foreign keys and entity references. * * @return array * [CRM_Core_Reference_Interface] */ public static function getReferenceColumns() { if (!isset(Civi::$statics[__CLASS__]['links'])) { Civi::$statics[__CLASS__]['links'] = static::createReferenceColumns(__CLASS__); Civi::$statics[__CLASS__]['links'][] = new CRM_Core_Reference_Basic(self::getTableName(), 'relationship_id', 'civicrm_relationship', 'id'); Civi::$statics[__CLASS__]['links'][] = new CRM_Core_Reference_Basic(self::getTableName(), 'relationship_type_id', 'civicrm_relationship_type', 'id'); Civi::$statics[__CLASS__]['links'][] = new CRM_Core_Reference_Basic(self::getTableName(), 'near_contact_id', 'civicrm_contact', 'id'); Civi::$statics[__CLASS__]['links'][] = new CRM_Core_Reference_Basic(self::getTableName(), 'far_contact_id', 'civicrm_contact', 'id'); CRM_Core_DAO_AllCoreTables::invoke(__CLASS__, 'links_callback', Civi::$statics[__CLASS__]['links']); } return Civi::$statics[__CLASS__]['links']; } /** * Returns all the column names of this table * * @return array */ public static function &fields() { if (!isset(Civi::$statics[__CLASS__]['fields'])) { Civi::$statics[__CLASS__]['fields'] = [ 'id' => [ 'name' => 'id', 'type' => CRM_Utils_Type::T_INT, 'title' => ts('Relationship Cache ID'), 'description' => ts('Relationship Cache ID'), 'required' => TRUE, 'where' => 'civicrm_relationship_cache.id', 'table_name' => 'civicrm_relationship_cache', 'entity' => 'RelationshipCache', 'bao' => 'CRM_Contact_BAO_RelationshipCache', 'localizable' => 0, 'add' => '5.29', ], 'relationship_id' => [ 'name' => 'relationship_id', 'type' => CRM_Utils_Type::T_INT, 'title' => ts('Relationship'), 'description' => ts('id of the relationship (FK to civicrm_relationship.id)'), 'required' => TRUE, 'where' => 'civicrm_relationship_cache.relationship_id', 'table_name' => 'civicrm_relationship_cache', 'entity' => 'RelationshipCache', 'bao' => 'CRM_Contact_BAO_RelationshipCache', 'localizable' => 0, 'FKClassName' => 'CRM_Contact_DAO_Relationship', 'add' => '5.29', ], 'relationship_type_id' => [ 'name' => 'relationship_type_id', 'type' => CRM_Utils_Type::T_INT, 'title' => ts('Relationship Type'), 'description' => ts('id of the relationship type'), 'required' => TRUE, 'where' => 'civicrm_relationship_cache.relationship_type_id', 'table_name' => 'civicrm_relationship_cache', 'entity' => 'RelationshipCache', 'bao' => 'CRM_Contact_BAO_RelationshipCache', 'localizable' => 0, 'FKClassName' => 'CRM_Contact_DAO_RelationshipType', 'add' => '5.29', ], 'orientation' => [ 'name' => 'orientation', 'type' => CRM_Utils_Type::T_STRING, 'title' => ts('Orientation (a_b or b_a)'), 'description' => ts('The cache record is a permutation of the original relationship record. The orientation indicates whether it is forward (a_b) or reverse (b_a) relationship.'), 'required' => TRUE, 'maxlength' => 3, 'size' => CRM_Utils_Type::FOUR, 'where' => 'civicrm_relationship_cache.orientation', 'table_name' => 'civicrm_relationship_cache', 'entity' => 'RelationshipCache', 'bao' => 'CRM_Contact_BAO_RelationshipCache', 'localizable' => 0, 'pseudoconstant' => [ 'callback' => 'CRM_Core_SelectValues::relationshipOrientation', ], 'add' => '5.29', ], 'near_contact_id' => [ 'name' => 'near_contact_id', 'type' => CRM_Utils_Type::T_INT, 'title' => ts('Contact ID (Near side)'), 'description' => ts('id of the first contact'), 'required' => TRUE, 'where' => 'civicrm_relationship_cache.near_contact_id', 'table_name' => 'civicrm_relationship_cache', 'entity' => 'RelationshipCache', 'bao' => 'CRM_Contact_BAO_RelationshipCache', 'localizable' => 0, 'FKClassName' => 'CRM_Contact_DAO_Contact', 'html' => [ 'type' => 'EntityRef', ], 'add' => '5.29', ], 'near_relation' => [ 'name' => 'near_relation', 'type' => CRM_Utils_Type::T_STRING, 'title' => ts('Relationship Name (Near side)'), 'description' => ts('name for relationship of near_contact to far_contact.'), 'maxlength' => 64, 'size' => CRM_Utils_Type::BIG, 'where' => 'civicrm_relationship_cache.near_relation', 'table_name' => 'civicrm_relationship_cache', 'entity' => 'RelationshipCache', 'bao' => 'CRM_Contact_BAO_RelationshipCache', 'localizable' => 0, 'pseudoconstant' => [ 'callback' => 'CRM_Core_PseudoConstant::relationshipTypeOptions', ], 'add' => '5.29', ], 'far_contact_id' => [ 'name' => 'far_contact_id', 'type' => CRM_Utils_Type::T_INT, 'title' => ts('Contact ID (Far side)'), 'description' => ts('id of the second contact'), 'required' => TRUE, 'where' => 'civicrm_relationship_cache.far_contact_id', 'table_name' => 'civicrm_relationship_cache', 'entity' => 'RelationshipCache', 'bao' => 'CRM_Contact_BAO_RelationshipCache', 'localizable' => 0, 'FKClassName' => 'CRM_Contact_DAO_Contact', 'html' => [ 'type' => 'EntityRef', ], 'add' => '5.29', ], 'far_relation' => [ 'name' => 'far_relation', 'type' => CRM_Utils_Type::T_STRING, 'title' => ts('Relationship Name (Near side)'), 'description' => ts('name for relationship of far_contact to near_contact.'), 'maxlength' => 64, 'size' => CRM_Utils_Type::BIG, 'where' => 'civicrm_relationship_cache.far_relation', 'table_name' => 'civicrm_relationship_cache', 'entity' => 'RelationshipCache', 'bao' => 'CRM_Contact_BAO_RelationshipCache', 'localizable' => 0, 'pseudoconstant' => [ 'callback' => 'CRM_Core_PseudoConstant::relationshipTypeOptions', ], 'add' => '5.29', ], 'is_active' => [ 'name' => 'is_active', 'type' => CRM_Utils_Type::T_BOOLEAN, 'title' => ts('Relationship Is Active'), 'description' => ts('is the relationship active ?'), 'where' => 'civicrm_relationship_cache.is_active', 'default' => '1', 'table_name' => 'civicrm_relationship_cache', 'entity' => 'RelationshipCache', 'bao' => 'CRM_Contact_BAO_RelationshipCache', 'localizable' => 0, 'html' => [ 'type' => 'CheckBox', ], 'add' => '5.29', ], 'relationship_start_date' => [ 'name' => 'start_date', 'type' => CRM_Utils_Type::T_DATE, 'title' => ts('Relationship Start Date'), 'description' => ts('date when the relationship started'), 'where' => 'civicrm_relationship_cache.start_date', 'table_name' => 'civicrm_relationship_cache', 'entity' => 'RelationshipCache', 'bao' => 'CRM_Contact_BAO_RelationshipCache', 'localizable' => 0, 'html' => [ 'type' => 'Select Date', 'formatType' => 'activityDate', ], 'add' => '5.29', ], 'relationship_end_date' => [ 'name' => 'end_date', 'type' => CRM_Utils_Type::T_DATE, 'title' => ts('Relationship End Date'), 'description' => ts('date when the relationship ended'), 'where' => 'civicrm_relationship_cache.end_date', 'table_name' => 'civicrm_relationship_cache', 'entity' => 'RelationshipCache', 'bao' => 'CRM_Contact_BAO_RelationshipCache', 'localizable' => 0, 'html' => [ 'type' => 'Select Date', 'formatType' => 'activityDate', ], 'add' => '5.29', ], ]; CRM_Core_DAO_AllCoreTables::invoke(__CLASS__, 'fields_callback', Civi::$statics[__CLASS__]['fields']); } return Civi::$statics[__CLASS__]['fields']; } /** * Return a mapping from field-name to the corresponding key (as used in fields()). * * @return array * Array(string $name => string $uniqueName). */ public static function &fieldKeys() { if (!isset(Civi::$statics[__CLASS__]['fieldKeys'])) { Civi::$statics[__CLASS__]['fieldKeys'] = array_flip(CRM_Utils_Array::collect('name', self::fields())); } return Civi::$statics[__CLASS__]['fieldKeys']; } /** * Returns the names of this table * * @return string */ public static function getTableName() { return self::$_tableName; } /** * Returns if this table needs to be logged * * @return bool */ public function getLog() { return self::$_log; } /** * Returns the list of fields that can be imported * * @param bool $prefix * * @return array */ public static function &import($prefix = FALSE) { $r = CRM_Core_DAO_AllCoreTables::getImports(__CLASS__, 'relationship_cache', $prefix, []); return $r; } /** * Returns the list of fields that can be exported * * @param bool $prefix * * @return array */ public static function &export($prefix = FALSE) { $r = CRM_Core_DAO_AllCoreTables::getExports(__CLASS__, 'relationship_cache', $prefix, []); return $r; } /** * Returns the list of indices * * @param bool $localize * * @return array */ public static function indices($localize = TRUE) { $indices = [ 'UI_relationship' => [ 'name' => 'UI_relationship', 'field' => [ 0 => 'relationship_id', 1 => 'orientation', ], 'localizable' => FALSE, 'unique' => TRUE, 'sig' => 'civicrm_relationship_cache::1::relationship_id::orientation', ], 'index_nearid_nearrelation' => [ 'name' => 'index_nearid_nearrelation', 'field' => [ 0 => 'near_contact_id', 1 => 'near_relation', ], 'localizable' => FALSE, 'sig' => 'civicrm_relationship_cache::0::near_contact_id::near_relation', ], 'index_nearid_farrelation' => [ 'name' => 'index_nearid_farrelation', 'field' => [ 0 => 'near_contact_id', 1 => 'far_relation', ], 'localizable' => FALSE, 'sig' => 'civicrm_relationship_cache::0::near_contact_id::far_relation', ], 'index_near_relation' => [ 'name' => 'index_near_relation', 'field' => [ 0 => 'near_relation', ], 'localizable' => FALSE, 'sig' => 'civicrm_relationship_cache::0::near_relation', ], ]; return ($localize && !empty($indices)) ? CRM_Core_DAO_AllCoreTables::multilingualize(__CLASS__, $indices) : $indices; } }