CRM-20312 regenerated DAO with localisation
[civicrm-core.git] / CRM / Contact / DAO / SubscriptionHistory.php
CommitLineData
e501603b
TO
1<?php
2/*
3+--------------------------------------------------------------------+
4| CiviCRM version 4.7 |
5+--------------------------------------------------------------------+
0f03f337 6| Copyright CiviCRM LLC (c) 2004-2017 |
e501603b
TO
7+--------------------------------------------------------------------+
8| This file is a part of CiviCRM. |
9| |
10| CiviCRM is free software; you can copy, modify, and distribute it |
11| under the terms of the GNU Affero General Public License |
12| Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
13| |
14| CiviCRM is distributed in the hope that it will be useful, but |
15| WITHOUT ANY WARRANTY; without even the implied warranty of |
16| MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
17| See the GNU Affero General Public License for more details. |
18| |
19| You should have received a copy of the GNU Affero General Public |
20| License and the CiviCRM Licensing Exception along |
21| with this program; if not, contact CiviCRM LLC |
22| at info[AT]civicrm[DOT]org. If you have questions about the |
23| GNU Affero General Public License or the licensing of CiviCRM, |
24| see the CiviCRM license FAQ at http://civicrm.org/licensing |
25+--------------------------------------------------------------------+
26*/
27/**
28 * @package CRM
0f03f337 29 * @copyright CiviCRM LLC (c) 2004-2017
e501603b
TO
30 *
31 * Generated from xml/schema/CRM/Contact/SubscriptionHistory.xml
32 * DO NOT EDIT. Generated by CRM_Core_CodeGen
022785d8 33 * (GenCodeChecksum:eb20da8e82a8bc7211f8113a9ce4f76c)
e501603b
TO
34 */
35require_once 'CRM/Core/DAO.php';
36require_once 'CRM/Utils/Type.php';
f41f0342 37/**
38 * CRM_Contact_DAO_SubscriptionHistory constructor.
39 */
e501603b
TO
40class CRM_Contact_DAO_SubscriptionHistory extends CRM_Core_DAO {
41 /**
f41f0342 42 * Static instance to hold the table name.
e501603b
TO
43 *
44 * @var string
45 */
46 static $_tableName = 'civicrm_subscription_history';
e501603b 47 /**
f41f0342 48 * Should CiviCRM log any modifications to this table in the civicrm_log table.
e501603b
TO
49 *
50 * @var boolean
51 */
52 static $_log = true;
53 /**
54 * Internal Id
55 *
56 * @var int unsigned
57 */
58 public $id;
59 /**
60 * Contact Id
61 *
62 * @var int unsigned
63 */
64 public $contact_id;
65 /**
66 * Group Id
67 *
68 * @var int unsigned
69 */
70 public $group_id;
71 /**
72 * Date of the (un)subscription
73 *
74 * @var datetime
75 */
76 public $date;
77 /**
78 * How the (un)subscription was triggered
79 *
80 * @var string
81 */
82 public $method;
83 /**
84 * The state of the contact within the group
85 *
86 * @var string
87 */
88 public $status;
89 /**
90 * IP address or other tracking info
91 *
92 * @var string
93 */
94 public $tracking;
95 /**
f41f0342 96 * Class constructor.
e501603b
TO
97 */
98 function __construct() {
99 $this->__table = 'civicrm_subscription_history';
100 parent::__construct();
101 }
102 /**
f41f0342 103 * Returns foreign keys and entity references.
e501603b
TO
104 *
105 * @return array
106 * [CRM_Core_Reference_Interface]
107 */
108 static function getReferenceColumns() {
346aaaba
TO
109 if (!isset(Civi::$statics[__CLASS__]['links'])) {
110 Civi::$statics[__CLASS__]['links'] = static ::createReferenceColumns(__CLASS__);
111 Civi::$statics[__CLASS__]['links'][] = new CRM_Core_Reference_Basic(self::getTableName() , 'contact_id', 'civicrm_contact', 'id');
112 Civi::$statics[__CLASS__]['links'][] = new CRM_Core_Reference_Basic(self::getTableName() , 'group_id', 'civicrm_group', 'id');
113 CRM_Core_DAO_AllCoreTables::invoke(__CLASS__, 'links_callback', Civi::$statics[__CLASS__]['links']);
e501603b 114 }
346aaaba 115 return Civi::$statics[__CLASS__]['links'];
e501603b
TO
116 }
117 /**
118 * Returns all the column names of this table
119 *
120 * @return array
121 */
122 static function &fields() {
346aaaba
TO
123 if (!isset(Civi::$statics[__CLASS__]['fields'])) {
124 Civi::$statics[__CLASS__]['fields'] = array(
e501603b
TO
125 'id' => array(
126 'name' => 'id',
127 'type' => CRM_Utils_Type::T_INT,
128 'title' => ts('Group Membership History ID') ,
129 'description' => 'Internal Id',
130 'required' => true,
522a26c9 131 'table_name' => 'civicrm_subscription_history',
132 'entity' => 'SubscriptionHistory',
133 'bao' => 'CRM_Contact_BAO_SubscriptionHistory',
6a7e5e5d 134 'localizable' => 0,
e501603b
TO
135 ) ,
136 'contact_id' => array(
137 'name' => 'contact_id',
138 'type' => CRM_Utils_Type::T_INT,
139 'title' => ts('Contact ID') ,
140 'description' => 'Contact Id',
141 'required' => true,
522a26c9 142 'table_name' => 'civicrm_subscription_history',
143 'entity' => 'SubscriptionHistory',
144 'bao' => 'CRM_Contact_BAO_SubscriptionHistory',
6a7e5e5d 145 'localizable' => 0,
e501603b
TO
146 'FKClassName' => 'CRM_Contact_DAO_Contact',
147 ) ,
148 'group_id' => array(
149 'name' => 'group_id',
150 'type' => CRM_Utils_Type::T_INT,
151 'title' => ts('Group') ,
152 'description' => 'Group Id',
522a26c9 153 'table_name' => 'civicrm_subscription_history',
154 'entity' => 'SubscriptionHistory',
155 'bao' => 'CRM_Contact_BAO_SubscriptionHistory',
6a7e5e5d 156 'localizable' => 0,
e501603b
TO
157 'FKClassName' => 'CRM_Contact_DAO_Group',
158 'html' => array(
159 'type' => 'Select',
160 ) ,
161 'pseudoconstant' => array(
162 'table' => 'civicrm_group',
163 'keyColumn' => 'id',
164 'labelColumn' => 'title',
165 )
166 ) ,
167 'date' => array(
168 'name' => 'date',
169 'type' => CRM_Utils_Type::T_DATE + CRM_Utils_Type::T_TIME,
170 'title' => ts('Group Membership Action Date') ,
171 'description' => 'Date of the (un)subscription',
172 'required' => true,
522a26c9 173 'table_name' => 'civicrm_subscription_history',
174 'entity' => 'SubscriptionHistory',
175 'bao' => 'CRM_Contact_BAO_SubscriptionHistory',
6a7e5e5d 176 'localizable' => 0,
e501603b
TO
177 ) ,
178 'method' => array(
179 'name' => 'method',
180 'type' => CRM_Utils_Type::T_STRING,
181 'title' => ts('Group Membership Action') ,
182 'description' => 'How the (un)subscription was triggered',
183 'maxlength' => 8,
184 'size' => CRM_Utils_Type::EIGHT,
522a26c9 185 'table_name' => 'civicrm_subscription_history',
186 'entity' => 'SubscriptionHistory',
187 'bao' => 'CRM_Contact_BAO_SubscriptionHistory',
6a7e5e5d 188 'localizable' => 0,
e501603b
TO
189 'html' => array(
190 'type' => 'Select',
191 ) ,
192 'pseudoconstant' => array(
193 'callback' => 'CRM_Core_SelectValues::getSubscriptionHistoryMethods',
194 )
195 ) ,
196 'status' => array(
197 'name' => 'status',
198 'type' => CRM_Utils_Type::T_STRING,
199 'title' => ts('Group Membership Status') ,
200 'description' => 'The state of the contact within the group',
201 'maxlength' => 8,
202 'size' => CRM_Utils_Type::EIGHT,
522a26c9 203 'table_name' => 'civicrm_subscription_history',
204 'entity' => 'SubscriptionHistory',
205 'bao' => 'CRM_Contact_BAO_SubscriptionHistory',
6a7e5e5d 206 'localizable' => 0,
e501603b
TO
207 'pseudoconstant' => array(
208 'callback' => 'CRM_Core_SelectValues::groupContactStatus',
209 )
210 ) ,
211 'tracking' => array(
212 'name' => 'tracking',
213 'type' => CRM_Utils_Type::T_STRING,
214 'title' => ts('Group Membership Tracking') ,
215 'description' => 'IP address or other tracking info',
216 'maxlength' => 255,
217 'size' => CRM_Utils_Type::HUGE,
522a26c9 218 'table_name' => 'civicrm_subscription_history',
219 'entity' => 'SubscriptionHistory',
220 'bao' => 'CRM_Contact_BAO_SubscriptionHistory',
6a7e5e5d 221 'localizable' => 0,
e501603b
TO
222 ) ,
223 );
346aaaba 224 CRM_Core_DAO_AllCoreTables::invoke(__CLASS__, 'fields_callback', Civi::$statics[__CLASS__]['fields']);
e501603b 225 }
346aaaba 226 return Civi::$statics[__CLASS__]['fields'];
e501603b
TO
227 }
228 /**
bd8e0b14 229 * Return a mapping from field-name to the corresponding key (as used in fields()).
e501603b
TO
230 *
231 * @return array
bd8e0b14 232 * Array(string $name => string $uniqueName).
e501603b
TO
233 */
234 static function &fieldKeys() {
bd8e0b14
TO
235 if (!isset(Civi::$statics[__CLASS__]['fieldKeys'])) {
236 Civi::$statics[__CLASS__]['fieldKeys'] = array_flip(CRM_Utils_Array::collect('name', self::fields()));
e501603b 237 }
bd8e0b14 238 return Civi::$statics[__CLASS__]['fieldKeys'];
e501603b
TO
239 }
240 /**
241 * Returns the names of this table
242 *
243 * @return string
244 */
245 static function getTableName() {
246 return self::$_tableName;
247 }
248 /**
249 * Returns if this table needs to be logged
250 *
251 * @return boolean
252 */
253 function getLog() {
254 return self::$_log;
255 }
256 /**
257 * Returns the list of fields that can be imported
258 *
259 * @param bool $prefix
260 *
261 * @return array
262 */
263 static function &import($prefix = false) {
60808919
TO
264 $r = CRM_Core_DAO_AllCoreTables::getImports(__CLASS__, 'subscription_history', $prefix, array());
265 return $r;
e501603b
TO
266 }
267 /**
268 * Returns the list of fields that can be exported
269 *
270 * @param bool $prefix
271 *
272 * @return array
273 */
274 static function &export($prefix = false) {
60808919
TO
275 $r = CRM_Core_DAO_AllCoreTables::getExports(__CLASS__, 'subscription_history', $prefix, array());
276 return $r;
e501603b
TO
277 }
278}