Merge pull request #19525 from eileenmcnaughton/member_soft
[civicrm-core.git] / CRM / Activity / DAO / ActivityContact.php
1 <?php
2
3 /**
4 * @package CRM
5 * @copyright CiviCRM LLC https://civicrm.org/licensing
6 *
7 * Generated from xml/schema/CRM/Activity/ActivityContact.xml
8 * DO NOT EDIT. Generated by CRM_Core_CodeGen
9 * (GenCodeChecksum:e713c308a3c7d44cb334af9c97b9939e)
10 */
11
12 /**
13 * Database access object for the ActivityContact entity.
14 */
15 class CRM_Activity_DAO_ActivityContact extends CRM_Core_DAO {
16 const EXT = 'civicrm';
17 const TABLE_ADDED = '4.4';
18
19 /**
20 * Static instance to hold the table name.
21 *
22 * @var string
23 */
24 public static $_tableName = 'civicrm_activity_contact';
25
26 /**
27 * Should CiviCRM log any modifications to this table in the civicrm_log table.
28 *
29 * @var bool
30 */
31 public static $_log = TRUE;
32
33 /**
34 * Activity contact id
35 *
36 * @var int
37 */
38 public $id;
39
40 /**
41 * Foreign key to the activity for this record.
42 *
43 * @var int
44 */
45 public $activity_id;
46
47 /**
48 * Foreign key to the contact for this record.
49 *
50 * @var int
51 */
52 public $contact_id;
53
54 /**
55 * Determines the contact's role in the activity (source, target, or assignee).
56 *
57 * @var int
58 */
59 public $record_type_id;
60
61 /**
62 * Class constructor.
63 */
64 public function __construct() {
65 $this->__table = 'civicrm_activity_contact';
66 parent::__construct();
67 }
68
69 /**
70 * Returns localized title of this entity.
71 *
72 * @param bool $plural
73 * Whether to return the plural version of the title.
74 */
75 public static function getEntityTitle($plural = FALSE) {
76 return $plural ? ts('Activity Contacts') : ts('Activity Contact');
77 }
78
79 /**
80 * Returns foreign keys and entity references.
81 *
82 * @return array
83 * [CRM_Core_Reference_Interface]
84 */
85 public static function getReferenceColumns() {
86 if (!isset(Civi::$statics[__CLASS__]['links'])) {
87 Civi::$statics[__CLASS__]['links'] = static::createReferenceColumns(__CLASS__);
88 Civi::$statics[__CLASS__]['links'][] = new CRM_Core_Reference_Basic(self::getTableName(), 'activity_id', 'civicrm_activity', 'id');
89 Civi::$statics[__CLASS__]['links'][] = new CRM_Core_Reference_Basic(self::getTableName(), 'contact_id', 'civicrm_contact', 'id');
90 CRM_Core_DAO_AllCoreTables::invoke(__CLASS__, 'links_callback', Civi::$statics[__CLASS__]['links']);
91 }
92 return Civi::$statics[__CLASS__]['links'];
93 }
94
95 /**
96 * Returns all the column names of this table
97 *
98 * @return array
99 */
100 public static function &fields() {
101 if (!isset(Civi::$statics[__CLASS__]['fields'])) {
102 Civi::$statics[__CLASS__]['fields'] = [
103 'id' => [
104 'name' => 'id',
105 'type' => CRM_Utils_Type::T_INT,
106 'title' => ts('Activity Contact ID'),
107 'description' => ts('Activity contact id'),
108 'required' => TRUE,
109 'where' => 'civicrm_activity_contact.id',
110 'table_name' => 'civicrm_activity_contact',
111 'entity' => 'ActivityContact',
112 'bao' => 'CRM_Activity_BAO_ActivityContact',
113 'localizable' => 0,
114 'html' => [
115 'type' => 'Number',
116 ],
117 'add' => '4.4',
118 ],
119 'activity_id' => [
120 'name' => 'activity_id',
121 'type' => CRM_Utils_Type::T_INT,
122 'title' => ts('Activity ID'),
123 'description' => ts('Foreign key to the activity for this record.'),
124 'required' => TRUE,
125 'where' => 'civicrm_activity_contact.activity_id',
126 'table_name' => 'civicrm_activity_contact',
127 'entity' => 'ActivityContact',
128 'bao' => 'CRM_Activity_BAO_ActivityContact',
129 'localizable' => 0,
130 'FKClassName' => 'CRM_Activity_DAO_Activity',
131 'html' => [
132 'label' => ts("Activity"),
133 ],
134 'add' => '4.4',
135 ],
136 'contact_id' => [
137 'name' => 'contact_id',
138 'type' => CRM_Utils_Type::T_INT,
139 'title' => ts('Contact ID'),
140 'description' => ts('Foreign key to the contact for this record.'),
141 'required' => TRUE,
142 'import' => TRUE,
143 'where' => 'civicrm_activity_contact.contact_id',
144 'export' => TRUE,
145 'table_name' => 'civicrm_activity_contact',
146 'entity' => 'ActivityContact',
147 'bao' => 'CRM_Activity_BAO_ActivityContact',
148 'localizable' => 0,
149 'FKClassName' => 'CRM_Contact_DAO_Contact',
150 'html' => [
151 'label' => ts("Contact"),
152 ],
153 'add' => '4.4',
154 ],
155 'record_type_id' => [
156 'name' => 'record_type_id',
157 'type' => CRM_Utils_Type::T_INT,
158 'title' => ts('Activity Contact Type'),
159 'description' => ts('Determines the contact\'s role in the activity (source, target, or assignee).'),
160 'where' => 'civicrm_activity_contact.record_type_id',
161 'table_name' => 'civicrm_activity_contact',
162 'entity' => 'ActivityContact',
163 'bao' => 'CRM_Activity_BAO_ActivityContact',
164 'localizable' => 0,
165 'html' => [
166 'type' => 'Select',
167 'label' => ts("Contact Role"),
168 ],
169 'pseudoconstant' => [
170 'optionGroupName' => 'activity_contacts',
171 'optionEditPath' => 'civicrm/admin/options/activity_contacts',
172 ],
173 'add' => '4.4',
174 ],
175 ];
176 CRM_Core_DAO_AllCoreTables::invoke(__CLASS__, 'fields_callback', Civi::$statics[__CLASS__]['fields']);
177 }
178 return Civi::$statics[__CLASS__]['fields'];
179 }
180
181 /**
182 * Return a mapping from field-name to the corresponding key (as used in fields()).
183 *
184 * @return array
185 * Array(string $name => string $uniqueName).
186 */
187 public static function &fieldKeys() {
188 if (!isset(Civi::$statics[__CLASS__]['fieldKeys'])) {
189 Civi::$statics[__CLASS__]['fieldKeys'] = array_flip(CRM_Utils_Array::collect('name', self::fields()));
190 }
191 return Civi::$statics[__CLASS__]['fieldKeys'];
192 }
193
194 /**
195 * Returns the names of this table
196 *
197 * @return string
198 */
199 public static function getTableName() {
200 return self::$_tableName;
201 }
202
203 /**
204 * Returns if this table needs to be logged
205 *
206 * @return bool
207 */
208 public function getLog() {
209 return self::$_log;
210 }
211
212 /**
213 * Returns the list of fields that can be imported
214 *
215 * @param bool $prefix
216 *
217 * @return array
218 */
219 public static function &import($prefix = FALSE) {
220 $r = CRM_Core_DAO_AllCoreTables::getImports(__CLASS__, 'activity_contact', $prefix, []);
221 return $r;
222 }
223
224 /**
225 * Returns the list of fields that can be exported
226 *
227 * @param bool $prefix
228 *
229 * @return array
230 */
231 public static function &export($prefix = FALSE) {
232 $r = CRM_Core_DAO_AllCoreTables::getExports(__CLASS__, 'activity_contact', $prefix, []);
233 return $r;
234 }
235
236 /**
237 * Returns the list of indices
238 *
239 * @param bool $localize
240 *
241 * @return array
242 */
243 public static function indices($localize = TRUE) {
244 $indices = [
245 'UI_activity_contact' => [
246 'name' => 'UI_activity_contact',
247 'field' => [
248 0 => 'contact_id',
249 1 => 'activity_id',
250 2 => 'record_type_id',
251 ],
252 'localizable' => FALSE,
253 'unique' => TRUE,
254 'sig' => 'civicrm_activity_contact::1::contact_id::activity_id::record_type_id',
255 ],
256 'index_record_type' => [
257 'name' => 'index_record_type',
258 'field' => [
259 0 => 'activity_id',
260 1 => 'record_type_id',
261 ],
262 'localizable' => FALSE,
263 'sig' => 'civicrm_activity_contact::0::activity_id::record_type_id',
264 ],
265 ];
266 return ($localize && !empty($indices)) ? CRM_Core_DAO_AllCoreTables::multilingualize(__CLASS__, $indices) : $indices;
267 }
268
269 }