Merge pull request #17502 from eileenmcnaughton/first
[civicrm-core.git] / CRM / Mailing / DAO / BouncePattern.php
1 <?php
2
3 /**
4 * @package CRM
5 * @copyright CiviCRM LLC https://civicrm.org/licensing
6 *
7 * Generated from xml/schema/CRM/Mailing/BouncePattern.xml
8 * DO NOT EDIT. Generated by CRM_Core_CodeGen
9 * (GenCodeChecksum:265a74c7d2cd07b11d0b43bf91e0fe62)
10 */
11
12 /**
13 * Database access object for the BouncePattern entity.
14 */
15 class CRM_Mailing_DAO_BouncePattern extends CRM_Core_DAO {
16
17 /**
18 * Static instance to hold the table name.
19 *
20 * @var string
21 */
22 public static $_tableName = 'civicrm_mailing_bounce_pattern';
23
24 /**
25 * Should CiviCRM log any modifications to this table in the civicrm_log table.
26 *
27 * @var bool
28 */
29 public static $_log = FALSE;
30
31 /**
32 * @var int
33 */
34 public $id;
35
36 /**
37 * Type of bounce
38 *
39 * @var int
40 */
41 public $bounce_type_id;
42
43 /**
44 * A regexp to match a message to a bounce type
45 *
46 * @var string
47 */
48 public $pattern;
49
50 /**
51 * Class constructor.
52 */
53 public function __construct() {
54 $this->__table = 'civicrm_mailing_bounce_pattern';
55 parent::__construct();
56 }
57
58 /**
59 * Returns localized title of this entity.
60 */
61 public static function getEntityTitle() {
62 return ts('Bounce Patterns');
63 }
64
65 /**
66 * Returns foreign keys and entity references.
67 *
68 * @return array
69 * [CRM_Core_Reference_Interface]
70 */
71 public static function getReferenceColumns() {
72 if (!isset(Civi::$statics[__CLASS__]['links'])) {
73 Civi::$statics[__CLASS__]['links'] = static::createReferenceColumns(__CLASS__);
74 Civi::$statics[__CLASS__]['links'][] = new CRM_Core_Reference_Basic(self::getTableName(), 'bounce_type_id', 'civicrm_mailing_bounce_type', 'id');
75 CRM_Core_DAO_AllCoreTables::invoke(__CLASS__, 'links_callback', Civi::$statics[__CLASS__]['links']);
76 }
77 return Civi::$statics[__CLASS__]['links'];
78 }
79
80 /**
81 * Returns all the column names of this table
82 *
83 * @return array
84 */
85 public static function &fields() {
86 if (!isset(Civi::$statics[__CLASS__]['fields'])) {
87 Civi::$statics[__CLASS__]['fields'] = [
88 'id' => [
89 'name' => 'id',
90 'type' => CRM_Utils_Type::T_INT,
91 'title' => ts('Bounce Pattern ID'),
92 'required' => TRUE,
93 'where' => 'civicrm_mailing_bounce_pattern.id',
94 'table_name' => 'civicrm_mailing_bounce_pattern',
95 'entity' => 'BouncePattern',
96 'bao' => 'CRM_Mailing_BAO_BouncePattern',
97 'localizable' => 0,
98 ],
99 'bounce_type_id' => [
100 'name' => 'bounce_type_id',
101 'type' => CRM_Utils_Type::T_INT,
102 'title' => ts('Bounce Type'),
103 'description' => ts('Type of bounce'),
104 'required' => TRUE,
105 'where' => 'civicrm_mailing_bounce_pattern.bounce_type_id',
106 'table_name' => 'civicrm_mailing_bounce_pattern',
107 'entity' => 'BouncePattern',
108 'bao' => 'CRM_Mailing_BAO_BouncePattern',
109 'localizable' => 0,
110 'FKClassName' => 'CRM_Mailing_DAO_BounceType',
111 'pseudoconstant' => [
112 'table' => 'civicrm_mailing_bounce_type',
113 'keyColumn' => 'id',
114 'labelColumn' => 'name',
115 ],
116 ],
117 'pattern' => [
118 'name' => 'pattern',
119 'type' => CRM_Utils_Type::T_STRING,
120 'title' => ts('Pattern'),
121 'description' => ts('A regexp to match a message to a bounce type'),
122 'maxlength' => 255,
123 'size' => CRM_Utils_Type::HUGE,
124 'where' => 'civicrm_mailing_bounce_pattern.pattern',
125 'table_name' => 'civicrm_mailing_bounce_pattern',
126 'entity' => 'BouncePattern',
127 'bao' => 'CRM_Mailing_BAO_BouncePattern',
128 'localizable' => 0,
129 ],
130 ];
131 CRM_Core_DAO_AllCoreTables::invoke(__CLASS__, 'fields_callback', Civi::$statics[__CLASS__]['fields']);
132 }
133 return Civi::$statics[__CLASS__]['fields'];
134 }
135
136 /**
137 * Return a mapping from field-name to the corresponding key (as used in fields()).
138 *
139 * @return array
140 * Array(string $name => string $uniqueName).
141 */
142 public static function &fieldKeys() {
143 if (!isset(Civi::$statics[__CLASS__]['fieldKeys'])) {
144 Civi::$statics[__CLASS__]['fieldKeys'] = array_flip(CRM_Utils_Array::collect('name', self::fields()));
145 }
146 return Civi::$statics[__CLASS__]['fieldKeys'];
147 }
148
149 /**
150 * Returns the names of this table
151 *
152 * @return string
153 */
154 public static function getTableName() {
155 return self::$_tableName;
156 }
157
158 /**
159 * Returns if this table needs to be logged
160 *
161 * @return bool
162 */
163 public function getLog() {
164 return self::$_log;
165 }
166
167 /**
168 * Returns the list of fields that can be imported
169 *
170 * @param bool $prefix
171 *
172 * @return array
173 */
174 public static function &import($prefix = FALSE) {
175 $r = CRM_Core_DAO_AllCoreTables::getImports(__CLASS__, 'mailing_bounce_pattern', $prefix, []);
176 return $r;
177 }
178
179 /**
180 * Returns the list of fields that can be exported
181 *
182 * @param bool $prefix
183 *
184 * @return array
185 */
186 public static function &export($prefix = FALSE) {
187 $r = CRM_Core_DAO_AllCoreTables::getExports(__CLASS__, 'mailing_bounce_pattern', $prefix, []);
188 return $r;
189 }
190
191 /**
192 * Returns the list of indices
193 *
194 * @param bool $localize
195 *
196 * @return array
197 */
198 public static function indices($localize = TRUE) {
199 $indices = [];
200 return ($localize && !empty($indices)) ? CRM_Core_DAO_AllCoreTables::multilingualize(__CLASS__, $indices) : $indices;
201 }
202
203 }