Merge pull request #15665 from MikeyMJCO/patch-1
[civicrm-core.git] / CRM / Mailing / Event / DAO / Subscribe.php
CommitLineData
e501603b 1<?php
c3fc2621 2
e501603b
TO
3/**
4 * @package CRM
f299f7db 5 * @copyright CiviCRM LLC (c) 2004-2020
e501603b
TO
6 *
7 * Generated from xml/schema/CRM/Mailing/Event/Subscribe.xml
8 * DO NOT EDIT. Generated by CRM_Core_CodeGen
74db51d3 9 * (GenCodeChecksum:081be4da95465c1f28e13d936b372345)
e501603b 10 */
c3fc2621 11
f41f0342 12/**
c3fc2621 13 * Database access object for the Subscribe entity.
f41f0342 14 */
e501603b 15class CRM_Mailing_Event_DAO_Subscribe 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_subscribe';
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 Group
38 *
e6ca0a57 39 * @var int
e501603b
TO
40 */
41 public $group_id;
c3fc2621 42
e501603b
TO
43 /**
44 * FK to Contact
45 *
e6ca0a57 46 * @var int
e501603b
TO
47 */
48 public $contact_id;
c3fc2621 49
e501603b
TO
50 /**
51 * Security hash
52 *
53 * @var string
54 */
55 public $hash;
c3fc2621 56
e501603b
TO
57 /**
58 * When this subscription event occurred.
59 *
6c2b97b7 60 * @var timestamp
e501603b
TO
61 */
62 public $time_stamp;
c3fc2621 63
e501603b 64 /**
f41f0342 65 * Class constructor.
e501603b 66 */
c3fc2621 67 public function __construct() {
e501603b
TO
68 $this->__table = 'civicrm_mailing_event_subscribe';
69 parent::__construct();
70 }
c3fc2621 71
e501603b 72 /**
f41f0342 73 * Returns foreign keys and entity references.
e501603b
TO
74 *
75 * @return array
76 * [CRM_Core_Reference_Interface]
77 */
c3fc2621 78 public static function getReferenceColumns() {
346aaaba 79 if (!isset(Civi::$statics[__CLASS__]['links'])) {
a36434b9 80 Civi::$statics[__CLASS__]['links'] = static::createReferenceColumns(__CLASS__);
c3fc2621
CW
81 Civi::$statics[__CLASS__]['links'][] = new CRM_Core_Reference_Basic(self::getTableName(), 'group_id', 'civicrm_group', 'id');
82 Civi::$statics[__CLASS__]['links'][] = new CRM_Core_Reference_Basic(self::getTableName(), 'contact_id', 'civicrm_contact', 'id');
346aaaba 83 CRM_Core_DAO_AllCoreTables::invoke(__CLASS__, 'links_callback', Civi::$statics[__CLASS__]['links']);
e501603b 84 }
346aaaba 85 return Civi::$statics[__CLASS__]['links'];
e501603b 86 }
c3fc2621 87
e501603b
TO
88 /**
89 * Returns all the column names of this table
90 *
91 * @return array
92 */
c3fc2621 93 public static function &fields() {
346aaaba 94 if (!isset(Civi::$statics[__CLASS__]['fields'])) {
c3fc2621
CW
95 Civi::$statics[__CLASS__]['fields'] = [
96 'id' => [
e501603b
TO
97 'name' => 'id',
98 'type' => CRM_Utils_Type::T_INT,
c3fc2621
CW
99 'title' => ts('Mailing Subscribe ID'),
100 'required' => TRUE,
a36434b9 101 'where' => 'civicrm_mailing_event_subscribe.id',
522a26c9 102 'table_name' => 'civicrm_mailing_event_subscribe',
103 'entity' => 'Subscribe',
104 'bao' => 'CRM_Mailing_Event_BAO_Subscribe',
6a7e5e5d 105 'localizable' => 0,
c3fc2621
CW
106 ],
107 'group_id' => [
e501603b
TO
108 'name' => 'group_id',
109 'type' => CRM_Utils_Type::T_INT,
c3fc2621 110 'title' => ts('Mailing Subscribe Group'),
215b423e 111 'description' => ts('FK to Group'),
c3fc2621 112 'required' => TRUE,
a36434b9 113 'where' => 'civicrm_mailing_event_subscribe.group_id',
522a26c9 114 'table_name' => 'civicrm_mailing_event_subscribe',
115 'entity' => 'Subscribe',
116 'bao' => 'CRM_Mailing_Event_BAO_Subscribe',
6a7e5e5d 117 'localizable' => 0,
e501603b 118 'FKClassName' => 'CRM_Contact_DAO_Group',
c3fc2621 119 'html' => [
e501603b 120 'type' => 'Select',
c3fc2621
CW
121 ],
122 'pseudoconstant' => [
e501603b
TO
123 'table' => 'civicrm_group',
124 'keyColumn' => 'id',
125 'labelColumn' => 'title',
e6ca0a57 126 ],
c3fc2621
CW
127 ],
128 'contact_id' => [
e501603b
TO
129 'name' => 'contact_id',
130 'type' => CRM_Utils_Type::T_INT,
c3fc2621 131 'title' => ts('Mailing Subscribe Contact'),
215b423e 132 'description' => ts('FK to Contact'),
c3fc2621 133 'required' => TRUE,
a36434b9 134 'where' => 'civicrm_mailing_event_subscribe.contact_id',
522a26c9 135 'table_name' => 'civicrm_mailing_event_subscribe',
136 'entity' => 'Subscribe',
137 'bao' => 'CRM_Mailing_Event_BAO_Subscribe',
6a7e5e5d 138 'localizable' => 0,
e501603b 139 'FKClassName' => 'CRM_Contact_DAO_Contact',
c3fc2621
CW
140 ],
141 'hash' => [
e501603b
TO
142 'name' => 'hash',
143 'type' => CRM_Utils_Type::T_STRING,
c3fc2621 144 'title' => ts('Mailing Subscribe Hash'),
215b423e 145 'description' => ts('Security hash'),
c3fc2621 146 'required' => TRUE,
e501603b
TO
147 'maxlength' => 255,
148 'size' => CRM_Utils_Type::HUGE,
a36434b9 149 'where' => 'civicrm_mailing_event_subscribe.hash',
522a26c9 150 'table_name' => 'civicrm_mailing_event_subscribe',
151 'entity' => 'Subscribe',
152 'bao' => 'CRM_Mailing_Event_BAO_Subscribe',
6a7e5e5d 153 'localizable' => 0,
c3fc2621
CW
154 ],
155 'time_stamp' => [
e501603b 156 'name' => 'time_stamp',
6c2b97b7 157 'type' => CRM_Utils_Type::T_TIMESTAMP,
c3fc2621 158 'title' => ts('Mailing Subscribe Timestamp'),
215b423e 159 'description' => ts('When this subscription event occurred.'),
c3fc2621 160 'required' => TRUE,
a36434b9 161 'where' => 'civicrm_mailing_event_subscribe.time_stamp',
6c2b97b7 162 'default' => 'CURRENT_TIMESTAMP',
522a26c9 163 'table_name' => 'civicrm_mailing_event_subscribe',
164 'entity' => 'Subscribe',
165 'bao' => 'CRM_Mailing_Event_BAO_Subscribe',
6a7e5e5d 166 'localizable' => 0,
c3fc2621
CW
167 ],
168 ];
346aaaba 169 CRM_Core_DAO_AllCoreTables::invoke(__CLASS__, 'fields_callback', Civi::$statics[__CLASS__]['fields']);
e501603b 170 }
346aaaba 171 return Civi::$statics[__CLASS__]['fields'];
e501603b 172 }
c3fc2621 173
e501603b 174 /**
bd8e0b14 175 * Return a mapping from field-name to the corresponding key (as used in fields()).
e501603b
TO
176 *
177 * @return array
bd8e0b14 178 * Array(string $name => string $uniqueName).
e501603b 179 */
c3fc2621 180 public static function &fieldKeys() {
bd8e0b14
TO
181 if (!isset(Civi::$statics[__CLASS__]['fieldKeys'])) {
182 Civi::$statics[__CLASS__]['fieldKeys'] = array_flip(CRM_Utils_Array::collect('name', self::fields()));
e501603b 183 }
bd8e0b14 184 return Civi::$statics[__CLASS__]['fieldKeys'];
e501603b 185 }
c3fc2621 186
e501603b
TO
187 /**
188 * Returns the names of this table
189 *
190 * @return string
191 */
c3fc2621 192 public static function getTableName() {
e501603b
TO
193 return self::$_tableName;
194 }
c3fc2621 195
e501603b
TO
196 /**
197 * Returns if this table needs to be logged
198 *
c3fc2621 199 * @return bool
e501603b 200 */
c3fc2621 201 public function getLog() {
e501603b
TO
202 return self::$_log;
203 }
c3fc2621 204
e501603b
TO
205 /**
206 * Returns the list of fields that can be imported
207 *
208 * @param bool $prefix
209 *
210 * @return array
211 */
c3fc2621
CW
212 public static function &import($prefix = FALSE) {
213 $r = CRM_Core_DAO_AllCoreTables::getImports(__CLASS__, 'mailing_event_subscribe', $prefix, []);
60808919 214 return $r;
e501603b 215 }
c3fc2621 216
e501603b
TO
217 /**
218 * Returns the list of fields that can be exported
219 *
220 * @param bool $prefix
221 *
222 * @return array
223 */
c3fc2621
CW
224 public static function &export($prefix = FALSE) {
225 $r = CRM_Core_DAO_AllCoreTables::getExports(__CLASS__, 'mailing_event_subscribe', $prefix, []);
60808919 226 return $r;
e501603b 227 }
c3fc2621 228
e7a6b91a
AS
229 /**
230 * Returns the list of indices
c3fc2621
CW
231 *
232 * @param bool $localize
233 *
234 * @return array
e7a6b91a
AS
235 */
236 public static function indices($localize = TRUE) {
c3fc2621 237 $indices = [];
e7a6b91a
AS
238 return ($localize && !empty($indices)) ? CRM_Core_DAO_AllCoreTables::multilingualize(__CLASS__, $indices) : $indices;
239 }
c3fc2621 240
e501603b 241}