Merge pull request #16009 from jmcclelland/import-match-phone
[civicrm-core.git] / CRM / Mailing / Event / DAO / Unsubscribe.php
CommitLineData
e501603b 1<?php
c3fc2621 2
e501603b
TO
3/**
4 * @package CRM
ca5cec67 5 * @copyright CiviCRM LLC https://civicrm.org/licensing
e501603b
TO
6 *
7 * Generated from xml/schema/CRM/Mailing/Event/Unsubscribe.xml
8 * DO NOT EDIT. Generated by CRM_Core_CodeGen
f29bf4f3 9 * (GenCodeChecksum:b94d81304a2444e6200faad7c2703a87)
e501603b 10 */
c3fc2621 11
f41f0342 12/**
c3fc2621 13 * Database access object for the Unsubscribe entity.
f41f0342 14 */
e501603b 15class CRM_Mailing_Event_DAO_Unsubscribe extends CRM_Core_DAO {
c3fc2621 16
e501603b 17 /**
f41f0342 18 * Static instance to hold the table name.
e501603b
TO
19 *
20 * @var string
21 */
fa45b5b9 22 public static $_tableName = 'civicrm_mailing_event_unsubscribe';
c3fc2621 23
e501603b 24 /**
f41f0342 25 * Should CiviCRM log any modifications to this table in the civicrm_log table.
e501603b 26 *
c3fc2621 27 * @var bool
e501603b 28 */
fa45b5b9 29 public static $_log = FALSE;
c3fc2621 30
e501603b 31 /**
e6ca0a57 32 * @var int
e501603b
TO
33 */
34 public $id;
c3fc2621 35
e501603b
TO
36 /**
37 * FK to EventQueue
38 *
e6ca0a57 39 * @var int
e501603b
TO
40 */
41 public $event_queue_id;
c3fc2621 42
e501603b
TO
43 /**
44 * Unsubscribe at org- or group-level
45 *
e6ca0a57 46 * @var bool
e501603b
TO
47 */
48 public $org_unsubscribe;
c3fc2621 49
e501603b
TO
50 /**
51 * When this delivery event occurred.
52 *
6c2b97b7 53 * @var timestamp
e501603b
TO
54 */
55 public $time_stamp;
c3fc2621 56
e501603b 57 /**
f41f0342 58 * Class constructor.
e501603b 59 */
c3fc2621 60 public function __construct() {
e501603b
TO
61 $this->__table = 'civicrm_mailing_event_unsubscribe';
62 parent::__construct();
63 }
c3fc2621 64
e501603b 65 /**
f41f0342 66 * Returns foreign keys and entity references.
e501603b
TO
67 *
68 * @return array
69 * [CRM_Core_Reference_Interface]
70 */
c3fc2621 71 public static function getReferenceColumns() {
346aaaba 72 if (!isset(Civi::$statics[__CLASS__]['links'])) {
a36434b9 73 Civi::$statics[__CLASS__]['links'] = static::createReferenceColumns(__CLASS__);
c3fc2621 74 Civi::$statics[__CLASS__]['links'][] = new CRM_Core_Reference_Basic(self::getTableName(), 'event_queue_id', 'civicrm_mailing_event_queue', 'id');
346aaaba 75 CRM_Core_DAO_AllCoreTables::invoke(__CLASS__, 'links_callback', Civi::$statics[__CLASS__]['links']);
e501603b 76 }
346aaaba 77 return Civi::$statics[__CLASS__]['links'];
e501603b 78 }
c3fc2621 79
e501603b
TO
80 /**
81 * Returns all the column names of this table
82 *
83 * @return array
84 */
c3fc2621 85 public static function &fields() {
346aaaba 86 if (!isset(Civi::$statics[__CLASS__]['fields'])) {
c3fc2621
CW
87 Civi::$statics[__CLASS__]['fields'] = [
88 'id' => [
e501603b
TO
89 'name' => 'id',
90 'type' => CRM_Utils_Type::T_INT,
c3fc2621
CW
91 'title' => ts('Unsubscribe ID'),
92 'required' => TRUE,
a36434b9 93 'where' => 'civicrm_mailing_event_unsubscribe.id',
522a26c9 94 'table_name' => 'civicrm_mailing_event_unsubscribe',
95 'entity' => 'Unsubscribe',
96 'bao' => 'CRM_Mailing_Event_BAO_Unsubscribe',
6a7e5e5d 97 'localizable' => 0,
c3fc2621
CW
98 ],
99 'event_queue_id' => [
e501603b
TO
100 'name' => 'event_queue_id',
101 'type' => CRM_Utils_Type::T_INT,
c3fc2621 102 'title' => ts('Mailing Event Queue'),
215b423e 103 'description' => ts('FK to EventQueue'),
c3fc2621 104 'required' => TRUE,
a36434b9 105 'where' => 'civicrm_mailing_event_unsubscribe.event_queue_id',
522a26c9 106 'table_name' => 'civicrm_mailing_event_unsubscribe',
107 'entity' => 'Unsubscribe',
108 'bao' => 'CRM_Mailing_Event_BAO_Unsubscribe',
6a7e5e5d 109 'localizable' => 0,
e501603b 110 'FKClassName' => 'CRM_Mailing_Event_DAO_Queue',
c3fc2621
CW
111 ],
112 'org_unsubscribe' => [
e501603b
TO
113 'name' => 'org_unsubscribe',
114 'type' => CRM_Utils_Type::T_BOOLEAN,
c3fc2621 115 'title' => ts('Unsubscribe is for Organization?'),
215b423e 116 'description' => ts('Unsubscribe at org- or group-level'),
c3fc2621 117 'required' => TRUE,
a36434b9 118 'where' => 'civicrm_mailing_event_unsubscribe.org_unsubscribe',
522a26c9 119 'table_name' => 'civicrm_mailing_event_unsubscribe',
120 'entity' => 'Unsubscribe',
121 'bao' => 'CRM_Mailing_Event_BAO_Unsubscribe',
6a7e5e5d 122 'localizable' => 0,
c3fc2621
CW
123 ],
124 'time_stamp' => [
e501603b 125 'name' => 'time_stamp',
6c2b97b7 126 'type' => CRM_Utils_Type::T_TIMESTAMP,
c3fc2621 127 'title' => ts('Unsubscribe Timestamp'),
215b423e 128 'description' => ts('When this delivery event occurred.'),
c3fc2621 129 'required' => TRUE,
a36434b9 130 'where' => 'civicrm_mailing_event_unsubscribe.time_stamp',
6c2b97b7 131 'default' => 'CURRENT_TIMESTAMP',
522a26c9 132 'table_name' => 'civicrm_mailing_event_unsubscribe',
133 'entity' => 'Unsubscribe',
134 'bao' => 'CRM_Mailing_Event_BAO_Unsubscribe',
6a7e5e5d 135 'localizable' => 0,
c3fc2621
CW
136 ],
137 ];
346aaaba 138 CRM_Core_DAO_AllCoreTables::invoke(__CLASS__, 'fields_callback', Civi::$statics[__CLASS__]['fields']);
e501603b 139 }
346aaaba 140 return Civi::$statics[__CLASS__]['fields'];
e501603b 141 }
c3fc2621 142
e501603b 143 /**
bd8e0b14 144 * Return a mapping from field-name to the corresponding key (as used in fields()).
e501603b
TO
145 *
146 * @return array
bd8e0b14 147 * Array(string $name => string $uniqueName).
e501603b 148 */
c3fc2621 149 public static function &fieldKeys() {
bd8e0b14
TO
150 if (!isset(Civi::$statics[__CLASS__]['fieldKeys'])) {
151 Civi::$statics[__CLASS__]['fieldKeys'] = array_flip(CRM_Utils_Array::collect('name', self::fields()));
e501603b 152 }
bd8e0b14 153 return Civi::$statics[__CLASS__]['fieldKeys'];
e501603b 154 }
c3fc2621 155
e501603b
TO
156 /**
157 * Returns the names of this table
158 *
159 * @return string
160 */
c3fc2621 161 public static function getTableName() {
e501603b
TO
162 return self::$_tableName;
163 }
c3fc2621 164
e501603b
TO
165 /**
166 * Returns if this table needs to be logged
167 *
c3fc2621 168 * @return bool
e501603b 169 */
c3fc2621 170 public function getLog() {
e501603b
TO
171 return self::$_log;
172 }
c3fc2621 173
e501603b
TO
174 /**
175 * Returns the list of fields that can be imported
176 *
177 * @param bool $prefix
178 *
179 * @return array
180 */
c3fc2621
CW
181 public static function &import($prefix = FALSE) {
182 $r = CRM_Core_DAO_AllCoreTables::getImports(__CLASS__, 'mailing_event_unsubscribe', $prefix, []);
60808919 183 return $r;
e501603b 184 }
c3fc2621 185
e501603b
TO
186 /**
187 * Returns the list of fields that can be exported
188 *
189 * @param bool $prefix
190 *
191 * @return array
192 */
c3fc2621
CW
193 public static function &export($prefix = FALSE) {
194 $r = CRM_Core_DAO_AllCoreTables::getExports(__CLASS__, 'mailing_event_unsubscribe', $prefix, []);
60808919 195 return $r;
e501603b 196 }
c3fc2621 197
e7a6b91a
AS
198 /**
199 * Returns the list of indices
c3fc2621
CW
200 *
201 * @param bool $localize
202 *
203 * @return array
e7a6b91a
AS
204 */
205 public static function indices($localize = TRUE) {
c3fc2621 206 $indices = [];
e7a6b91a
AS
207 return ($localize && !empty($indices)) ? CRM_Core_DAO_AllCoreTables::multilingualize(__CLASS__, $indices) : $indices;
208 }
c3fc2621 209
e501603b 210}