Merge pull request #14383 from civicrm/5.14
[civicrm-core.git] / CRM / Mailing / DAO / TrackableURL.php
CommitLineData
e501603b 1<?php
c3fc2621 2
e501603b
TO
3/**
4 * @package CRM
6b83d5bd 5 * @copyright CiviCRM LLC (c) 2004-2019
e501603b
TO
6 *
7 * Generated from xml/schema/CRM/Mailing/TrackableURL.xml
8 * DO NOT EDIT. Generated by CRM_Core_CodeGen
e6ca0a57 9 * (GenCodeChecksum:36f444ad863c1eae8db4e8e1c768eb27)
e501603b 10 */
c3fc2621 11
f41f0342 12/**
c3fc2621 13 * Database access object for the TrackableURL entity.
f41f0342 14 */
e501603b 15class CRM_Mailing_DAO_TrackableURL 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_trackable_url';
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 * The URL to be tracked.
38 *
39 * @var text
40 */
41 public $url;
c3fc2621 42
e501603b
TO
43 /**
44 * FK to the mailing
45 *
e6ca0a57 46 * @var int
e501603b
TO
47 */
48 public $mailing_id;
c3fc2621 49
e501603b 50 /**
f41f0342 51 * Class constructor.
e501603b 52 */
c3fc2621 53 public function __construct() {
e501603b
TO
54 $this->__table = 'civicrm_mailing_trackable_url';
55 parent::__construct();
56 }
c3fc2621 57
e501603b 58 /**
f41f0342 59 * Returns foreign keys and entity references.
e501603b
TO
60 *
61 * @return array
62 * [CRM_Core_Reference_Interface]
63 */
c3fc2621 64 public static function getReferenceColumns() {
346aaaba 65 if (!isset(Civi::$statics[__CLASS__]['links'])) {
fa45b5b9 66 Civi::$statics[__CLASS__]['links'] = static::createReferenceColumns(__CLASS__);
c3fc2621 67 Civi::$statics[__CLASS__]['links'][] = new CRM_Core_Reference_Basic(self::getTableName(), 'mailing_id', 'civicrm_mailing', 'id');
346aaaba 68 CRM_Core_DAO_AllCoreTables::invoke(__CLASS__, 'links_callback', Civi::$statics[__CLASS__]['links']);
e501603b 69 }
346aaaba 70 return Civi::$statics[__CLASS__]['links'];
e501603b 71 }
c3fc2621 72
e501603b
TO
73 /**
74 * Returns all the column names of this table
75 *
76 * @return array
77 */
c3fc2621 78 public static function &fields() {
346aaaba 79 if (!isset(Civi::$statics[__CLASS__]['fields'])) {
c3fc2621
CW
80 Civi::$statics[__CLASS__]['fields'] = [
81 'id' => [
e501603b
TO
82 'name' => 'id',
83 'type' => CRM_Utils_Type::T_INT,
c3fc2621
CW
84 'title' => ts('Trackable URL ID'),
85 'required' => TRUE,
a36434b9 86 'where' => 'civicrm_mailing_trackable_url.id',
522a26c9 87 'table_name' => 'civicrm_mailing_trackable_url',
88 'entity' => 'TrackableURL',
89 'bao' => 'CRM_Mailing_BAO_TrackableURL',
6a7e5e5d 90 'localizable' => 0,
c3fc2621
CW
91 ],
92 'url' => [
e501603b
TO
93 'name' => 'url',
94 'type' => CRM_Utils_Type::T_TEXT,
c3fc2621 95 'title' => ts('Url'),
215b423e 96 'description' => ts('The URL to be tracked.'),
c3fc2621 97 'required' => TRUE,
a36434b9 98 'where' => 'civicrm_mailing_trackable_url.url',
522a26c9 99 'table_name' => 'civicrm_mailing_trackable_url',
100 'entity' => 'TrackableURL',
101 'bao' => 'CRM_Mailing_BAO_TrackableURL',
6a7e5e5d 102 'localizable' => 0,
c3fc2621
CW
103 ],
104 'mailing_id' => [
e501603b
TO
105 'name' => 'mailing_id',
106 'type' => CRM_Utils_Type::T_INT,
c3fc2621 107 'title' => ts('Mailing'),
215b423e 108 'description' => ts('FK to the mailing'),
c3fc2621 109 'required' => TRUE,
a36434b9 110 'where' => 'civicrm_mailing_trackable_url.mailing_id',
522a26c9 111 'table_name' => 'civicrm_mailing_trackable_url',
112 'entity' => 'TrackableURL',
113 'bao' => 'CRM_Mailing_BAO_TrackableURL',
6a7e5e5d 114 'localizable' => 0,
e501603b 115 'FKClassName' => 'CRM_Mailing_DAO_Mailing',
c3fc2621
CW
116 ],
117 ];
346aaaba 118 CRM_Core_DAO_AllCoreTables::invoke(__CLASS__, 'fields_callback', Civi::$statics[__CLASS__]['fields']);
e501603b 119 }
346aaaba 120 return Civi::$statics[__CLASS__]['fields'];
e501603b 121 }
c3fc2621 122
e501603b 123 /**
bd8e0b14 124 * Return a mapping from field-name to the corresponding key (as used in fields()).
e501603b
TO
125 *
126 * @return array
bd8e0b14 127 * Array(string $name => string $uniqueName).
e501603b 128 */
c3fc2621 129 public static function &fieldKeys() {
bd8e0b14
TO
130 if (!isset(Civi::$statics[__CLASS__]['fieldKeys'])) {
131 Civi::$statics[__CLASS__]['fieldKeys'] = array_flip(CRM_Utils_Array::collect('name', self::fields()));
e501603b 132 }
bd8e0b14 133 return Civi::$statics[__CLASS__]['fieldKeys'];
e501603b 134 }
c3fc2621 135
e501603b
TO
136 /**
137 * Returns the names of this table
138 *
139 * @return string
140 */
c3fc2621 141 public static function getTableName() {
e501603b
TO
142 return self::$_tableName;
143 }
c3fc2621 144
e501603b
TO
145 /**
146 * Returns if this table needs to be logged
147 *
c3fc2621 148 * @return bool
e501603b 149 */
c3fc2621 150 public function getLog() {
e501603b
TO
151 return self::$_log;
152 }
c3fc2621 153
e501603b
TO
154 /**
155 * Returns the list of fields that can be imported
156 *
157 * @param bool $prefix
158 *
159 * @return array
160 */
c3fc2621
CW
161 public static function &import($prefix = FALSE) {
162 $r = CRM_Core_DAO_AllCoreTables::getImports(__CLASS__, 'mailing_trackable_url', $prefix, []);
60808919 163 return $r;
e501603b 164 }
c3fc2621 165
e501603b
TO
166 /**
167 * Returns the list of fields that can be exported
168 *
169 * @param bool $prefix
170 *
171 * @return array
172 */
c3fc2621
CW
173 public static function &export($prefix = FALSE) {
174 $r = CRM_Core_DAO_AllCoreTables::getExports(__CLASS__, 'mailing_trackable_url', $prefix, []);
60808919 175 return $r;
e501603b 176 }
c3fc2621 177
e7a6b91a
AS
178 /**
179 * Returns the list of indices
c3fc2621
CW
180 *
181 * @param bool $localize
182 *
183 * @return array
e7a6b91a
AS
184 */
185 public static function indices($localize = TRUE) {
c3fc2621 186 $indices = [];
e7a6b91a
AS
187 return ($localize && !empty($indices)) ? CRM_Core_DAO_AllCoreTables::multilingualize(__CLASS__, $indices) : $indices;
188 }
c3fc2621 189
e501603b 190}