Merge pull request #20191 from colemanw/apiSettingsFixes
[civicrm-core.git] / CRM / Campaign / DAO / CampaignGroup.php
1 <?php
2
3 /**
4 * @package CRM
5 * @copyright CiviCRM LLC https://civicrm.org/licensing
6 *
7 * Generated from xml/schema/CRM/Campaign/CampaignGroup.xml
8 * DO NOT EDIT. Generated by CRM_Core_CodeGen
9 * (GenCodeChecksum:7bfca99dbb564a33bc7845002f091536)
10 */
11
12 /**
13 * Database access object for the CampaignGroup entity.
14 */
15 class CRM_Campaign_DAO_CampaignGroup extends CRM_Core_DAO {
16 const EXT = 'civicrm';
17 const TABLE_ADDED = '3.3';
18 const COMPONENT = 'CiviCampaign';
19
20 /**
21 * Static instance to hold the table name.
22 *
23 * @var string
24 */
25 public static $_tableName = 'civicrm_campaign_group';
26
27 /**
28 * Should CiviCRM log any modifications to this table in the civicrm_log table.
29 *
30 * @var bool
31 */
32 public static $_log = FALSE;
33
34 /**
35 * Campaign Group id.
36 *
37 * @var int
38 */
39 public $id;
40
41 /**
42 * Foreign key to the activity Campaign.
43 *
44 * @var int
45 */
46 public $campaign_id;
47
48 /**
49 * Type of Group.
50 *
51 * @var string
52 */
53 public $group_type;
54
55 /**
56 * Name of table where item being referenced is stored.
57 *
58 * @var string
59 */
60 public $entity_table;
61
62 /**
63 * Entity id of referenced table.
64 *
65 * @var int
66 */
67 public $entity_id;
68
69 /**
70 * Class constructor.
71 */
72 public function __construct() {
73 $this->__table = 'civicrm_campaign_group';
74 parent::__construct();
75 }
76
77 /**
78 * Returns localized title of this entity.
79 *
80 * @param bool $plural
81 * Whether to return the plural version of the title.
82 */
83 public static function getEntityTitle($plural = FALSE) {
84 return $plural ? ts('Campaign Groups') : ts('Campaign Group');
85 }
86
87 /**
88 * Returns foreign keys and entity references.
89 *
90 * @return array
91 * [CRM_Core_Reference_Interface]
92 */
93 public static function getReferenceColumns() {
94 if (!isset(Civi::$statics[__CLASS__]['links'])) {
95 Civi::$statics[__CLASS__]['links'] = static::createReferenceColumns(__CLASS__);
96 Civi::$statics[__CLASS__]['links'][] = new CRM_Core_Reference_Basic(self::getTableName(), 'campaign_id', 'civicrm_campaign', 'id');
97 Civi::$statics[__CLASS__]['links'][] = new CRM_Core_Reference_Dynamic(self::getTableName(), 'entity_id', NULL, 'id', 'entity_table');
98 CRM_Core_DAO_AllCoreTables::invoke(__CLASS__, 'links_callback', Civi::$statics[__CLASS__]['links']);
99 }
100 return Civi::$statics[__CLASS__]['links'];
101 }
102
103 /**
104 * Returns all the column names of this table
105 *
106 * @return array
107 */
108 public static function &fields() {
109 if (!isset(Civi::$statics[__CLASS__]['fields'])) {
110 Civi::$statics[__CLASS__]['fields'] = [
111 'id' => [
112 'name' => 'id',
113 'type' => CRM_Utils_Type::T_INT,
114 'title' => ts('Campaign Group ID'),
115 'description' => ts('Campaign Group id.'),
116 'required' => TRUE,
117 'where' => 'civicrm_campaign_group.id',
118 'table_name' => 'civicrm_campaign_group',
119 'entity' => 'CampaignGroup',
120 'bao' => 'CRM_Campaign_DAO_CampaignGroup',
121 'localizable' => 0,
122 'html' => [
123 'type' => 'Number',
124 ],
125 'readonly' => TRUE,
126 'add' => '3.3',
127 ],
128 'campaign_id' => [
129 'name' => 'campaign_id',
130 'type' => CRM_Utils_Type::T_INT,
131 'title' => ts('Campaign ID'),
132 'description' => ts('Foreign key to the activity Campaign.'),
133 'required' => TRUE,
134 'where' => 'civicrm_campaign_group.campaign_id',
135 'table_name' => 'civicrm_campaign_group',
136 'entity' => 'CampaignGroup',
137 'bao' => 'CRM_Campaign_DAO_CampaignGroup',
138 'localizable' => 0,
139 'FKClassName' => 'CRM_Campaign_DAO_Campaign',
140 'html' => [
141 'type' => 'EntityRef',
142 'label' => ts("Campaign"),
143 ],
144 'add' => '3.3',
145 ],
146 'group_type' => [
147 'name' => 'group_type',
148 'type' => CRM_Utils_Type::T_STRING,
149 'title' => ts('Campaign Group Type'),
150 'description' => ts('Type of Group.'),
151 'maxlength' => 8,
152 'size' => CRM_Utils_Type::EIGHT,
153 'where' => 'civicrm_campaign_group.group_type',
154 'default' => 'NULL',
155 'table_name' => 'civicrm_campaign_group',
156 'entity' => 'CampaignGroup',
157 'bao' => 'CRM_Campaign_DAO_CampaignGroup',
158 'localizable' => 0,
159 'html' => [
160 'type' => 'Select',
161 ],
162 'pseudoconstant' => [
163 'callback' => 'CRM_Core_SelectValues::getCampaignGroupTypes',
164 ],
165 'add' => NULL,
166 ],
167 'entity_table' => [
168 'name' => 'entity_table',
169 'type' => CRM_Utils_Type::T_STRING,
170 'title' => ts('Entity Table'),
171 'description' => ts('Name of table where item being referenced is stored.'),
172 'maxlength' => 64,
173 'size' => CRM_Utils_Type::BIG,
174 'where' => 'civicrm_campaign_group.entity_table',
175 'default' => 'NULL',
176 'table_name' => 'civicrm_campaign_group',
177 'entity' => 'CampaignGroup',
178 'bao' => 'CRM_Campaign_DAO_CampaignGroup',
179 'localizable' => 0,
180 'add' => '3.3',
181 ],
182 'entity_id' => [
183 'name' => 'entity_id',
184 'type' => CRM_Utils_Type::T_INT,
185 'title' => ts('Entity ID'),
186 'description' => ts('Entity id of referenced table.'),
187 'where' => 'civicrm_campaign_group.entity_id',
188 'default' => 'NULL',
189 'table_name' => 'civicrm_campaign_group',
190 'entity' => 'CampaignGroup',
191 'bao' => 'CRM_Campaign_DAO_CampaignGroup',
192 'localizable' => 0,
193 'add' => '3.3',
194 ],
195 ];
196 CRM_Core_DAO_AllCoreTables::invoke(__CLASS__, 'fields_callback', Civi::$statics[__CLASS__]['fields']);
197 }
198 return Civi::$statics[__CLASS__]['fields'];
199 }
200
201 /**
202 * Return a mapping from field-name to the corresponding key (as used in fields()).
203 *
204 * @return array
205 * Array(string $name => string $uniqueName).
206 */
207 public static function &fieldKeys() {
208 if (!isset(Civi::$statics[__CLASS__]['fieldKeys'])) {
209 Civi::$statics[__CLASS__]['fieldKeys'] = array_flip(CRM_Utils_Array::collect('name', self::fields()));
210 }
211 return Civi::$statics[__CLASS__]['fieldKeys'];
212 }
213
214 /**
215 * Returns the names of this table
216 *
217 * @return string
218 */
219 public static function getTableName() {
220 return self::$_tableName;
221 }
222
223 /**
224 * Returns if this table needs to be logged
225 *
226 * @return bool
227 */
228 public function getLog() {
229 return self::$_log;
230 }
231
232 /**
233 * Returns the list of fields that can be imported
234 *
235 * @param bool $prefix
236 *
237 * @return array
238 */
239 public static function &import($prefix = FALSE) {
240 $r = CRM_Core_DAO_AllCoreTables::getImports(__CLASS__, 'campaign_group', $prefix, []);
241 return $r;
242 }
243
244 /**
245 * Returns the list of fields that can be exported
246 *
247 * @param bool $prefix
248 *
249 * @return array
250 */
251 public static function &export($prefix = FALSE) {
252 $r = CRM_Core_DAO_AllCoreTables::getExports(__CLASS__, 'campaign_group', $prefix, []);
253 return $r;
254 }
255
256 /**
257 * Returns the list of indices
258 *
259 * @param bool $localize
260 *
261 * @return array
262 */
263 public static function indices($localize = TRUE) {
264 $indices = [];
265 return ($localize && !empty($indices)) ? CRM_Core_DAO_AllCoreTables::multilingualize(__CLASS__, $indices) : $indices;
266 }
267
268 }