Merge pull request #9616 from ErichBSchulz/feature/drupal_boot_no_exit
[civicrm-core.git] / CRM / Mailing / Event / DAO / Unsubscribe.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.7 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2017 |
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
29 * @copyright CiviCRM LLC (c) 2004-2017
30 *
31 * Generated from xml/schema/CRM/Mailing/Event/Unsubscribe.xml
32 * DO NOT EDIT. Generated by CRM_Core_CodeGen
33 * (GenCodeChecksum:459e65f073984db62e5e6ca22f121044)
34 */
35 require_once 'CRM/Core/DAO.php';
36 require_once 'CRM/Utils/Type.php';
37 /**
38 * CRM_Mailing_Event_DAO_Unsubscribe constructor.
39 */
40 class CRM_Mailing_Event_DAO_Unsubscribe extends CRM_Core_DAO {
41 /**
42 * Static instance to hold the table name.
43 *
44 * @var string
45 */
46 static $_tableName = 'civicrm_mailing_event_unsubscribe';
47 /**
48 * Should CiviCRM log any modifications to this table in the civicrm_log table.
49 *
50 * @var boolean
51 */
52 static $_log = false;
53 /**
54 *
55 * @var int unsigned
56 */
57 public $id;
58 /**
59 * FK to EventQueue
60 *
61 * @var int unsigned
62 */
63 public $event_queue_id;
64 /**
65 * Unsubscribe at org- or group-level
66 *
67 * @var boolean
68 */
69 public $org_unsubscribe;
70 /**
71 * When this delivery event occurred.
72 *
73 * @var datetime
74 */
75 public $time_stamp;
76 /**
77 * Class constructor.
78 */
79 function __construct() {
80 $this->__table = 'civicrm_mailing_event_unsubscribe';
81 parent::__construct();
82 }
83 /**
84 * Returns foreign keys and entity references.
85 *
86 * @return array
87 * [CRM_Core_Reference_Interface]
88 */
89 static function getReferenceColumns() {
90 if (!isset(Civi::$statics[__CLASS__]['links'])) {
91 Civi::$statics[__CLASS__]['links'] = static ::createReferenceColumns(__CLASS__);
92 Civi::$statics[__CLASS__]['links'][] = new CRM_Core_Reference_Basic(self::getTableName() , 'event_queue_id', 'civicrm_mailing_event_queue', 'id');
93 CRM_Core_DAO_AllCoreTables::invoke(__CLASS__, 'links_callback', Civi::$statics[__CLASS__]['links']);
94 }
95 return Civi::$statics[__CLASS__]['links'];
96 }
97 /**
98 * Returns all the column names of this table
99 *
100 * @return array
101 */
102 static function &fields() {
103 if (!isset(Civi::$statics[__CLASS__]['fields'])) {
104 Civi::$statics[__CLASS__]['fields'] = array(
105 'id' => array(
106 'name' => 'id',
107 'type' => CRM_Utils_Type::T_INT,
108 'title' => ts('Unsubscribe ID') ,
109 'required' => true,
110 'table_name' => 'civicrm_mailing_event_unsubscribe',
111 'entity' => 'Unsubscribe',
112 'bao' => 'CRM_Mailing_Event_BAO_Unsubscribe',
113 ) ,
114 'event_queue_id' => array(
115 'name' => 'event_queue_id',
116 'type' => CRM_Utils_Type::T_INT,
117 'title' => ts('Mailing Event Queue') ,
118 'description' => 'FK to EventQueue',
119 'required' => true,
120 'table_name' => 'civicrm_mailing_event_unsubscribe',
121 'entity' => 'Unsubscribe',
122 'bao' => 'CRM_Mailing_Event_BAO_Unsubscribe',
123 'FKClassName' => 'CRM_Mailing_Event_DAO_Queue',
124 ) ,
125 'org_unsubscribe' => array(
126 'name' => 'org_unsubscribe',
127 'type' => CRM_Utils_Type::T_BOOLEAN,
128 'title' => ts('Unsubscribe is for Organization?') ,
129 'description' => 'Unsubscribe at org- or group-level',
130 'required' => true,
131 'table_name' => 'civicrm_mailing_event_unsubscribe',
132 'entity' => 'Unsubscribe',
133 'bao' => 'CRM_Mailing_Event_BAO_Unsubscribe',
134 ) ,
135 'time_stamp' => array(
136 'name' => 'time_stamp',
137 'type' => CRM_Utils_Type::T_DATE + CRM_Utils_Type::T_TIME,
138 'title' => ts('Unsubscribe Timestamp') ,
139 'description' => 'When this delivery event occurred.',
140 'required' => true,
141 'table_name' => 'civicrm_mailing_event_unsubscribe',
142 'entity' => 'Unsubscribe',
143 'bao' => 'CRM_Mailing_Event_BAO_Unsubscribe',
144 ) ,
145 );
146 CRM_Core_DAO_AllCoreTables::invoke(__CLASS__, 'fields_callback', Civi::$statics[__CLASS__]['fields']);
147 }
148 return Civi::$statics[__CLASS__]['fields'];
149 }
150 /**
151 * Return a mapping from field-name to the corresponding key (as used in fields()).
152 *
153 * @return array
154 * Array(string $name => string $uniqueName).
155 */
156 static function &fieldKeys() {
157 if (!isset(Civi::$statics[__CLASS__]['fieldKeys'])) {
158 Civi::$statics[__CLASS__]['fieldKeys'] = array_flip(CRM_Utils_Array::collect('name', self::fields()));
159 }
160 return Civi::$statics[__CLASS__]['fieldKeys'];
161 }
162 /**
163 * Returns the names of this table
164 *
165 * @return string
166 */
167 static function getTableName() {
168 return self::$_tableName;
169 }
170 /**
171 * Returns if this table needs to be logged
172 *
173 * @return boolean
174 */
175 function getLog() {
176 return self::$_log;
177 }
178 /**
179 * Returns the list of fields that can be imported
180 *
181 * @param bool $prefix
182 *
183 * @return array
184 */
185 static function &import($prefix = false) {
186 $r = CRM_Core_DAO_AllCoreTables::getImports(__CLASS__, 'mailing_event_unsubscribe', $prefix, array());
187 return $r;
188 }
189 /**
190 * Returns the list of fields that can be exported
191 *
192 * @param bool $prefix
193 *
194 * @return array
195 */
196 static function &export($prefix = false) {
197 $r = CRM_Core_DAO_AllCoreTables::getExports(__CLASS__, 'mailing_event_unsubscribe', $prefix, array());
198 return $r;
199 }
200 }