CRM-20312 Add indices to DAO classes
[civicrm-core.git] / CRM / Core / DAO / RecurringEntity.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/Core/RecurringEntity.xml
32 * DO NOT EDIT. Generated by CRM_Core_CodeGen
022785d8 33 * (GenCodeChecksum:926c9bc8d5175511764721bc9dc8562a)
e501603b
TO
34 */
35require_once 'CRM/Core/DAO.php';
36require_once 'CRM/Utils/Type.php';
f41f0342 37/**
38 * CRM_Core_DAO_RecurringEntity constructor.
39 */
e501603b
TO
40class CRM_Core_DAO_RecurringEntity 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_recurring_entity';
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 *
55 * @var int unsigned
56 */
57 public $id;
58 /**
59 * Recurring Entity Parent ID
60 *
61 * @var int unsigned
62 */
63 public $parent_id;
64 /**
65 * Recurring Entity Child ID
66 *
67 * @var int unsigned
68 */
69 public $entity_id;
70 /**
71 * Physical tablename for entity, e.g. civicrm_event
72 *
73 * @var string
74 */
75 public $entity_table;
76 /**
77 * 1-this entity, 2-this and the following entities, 3-all the entities
78 *
79 * @var boolean
80 */
81 public $mode;
82 /**
f41f0342 83 * Class constructor.
e501603b
TO
84 */
85 function __construct() {
86 $this->__table = 'civicrm_recurring_entity';
87 parent::__construct();
88 }
89 /**
90 * Returns all the column names of this table
91 *
92 * @return array
93 */
94 static function &fields() {
346aaaba
TO
95 if (!isset(Civi::$statics[__CLASS__]['fields'])) {
96 Civi::$statics[__CLASS__]['fields'] = array(
e501603b
TO
97 'id' => array(
98 'name' => 'id',
99 'type' => CRM_Utils_Type::T_INT,
100 'title' => ts('ID') ,
101 'required' => true,
522a26c9 102 'table_name' => 'civicrm_recurring_entity',
103 'entity' => 'RecurringEntity',
104 'bao' => 'CRM_Core_BAO_RecurringEntity',
6a7e5e5d 105 'localizable' => 0,
e501603b
TO
106 ) ,
107 'parent_id' => array(
108 'name' => 'parent_id',
109 'type' => CRM_Utils_Type::T_INT,
110 'title' => ts('Parent ID') ,
111 'description' => 'Recurring Entity Parent ID',
112 'required' => true,
522a26c9 113 'table_name' => 'civicrm_recurring_entity',
114 'entity' => 'RecurringEntity',
115 'bao' => 'CRM_Core_BAO_RecurringEntity',
6a7e5e5d 116 'localizable' => 0,
e501603b
TO
117 ) ,
118 'entity_id' => array(
119 'name' => 'entity_id',
120 'type' => CRM_Utils_Type::T_INT,
121 'title' => ts('Entity ID') ,
122 'description' => 'Recurring Entity Child ID',
522a26c9 123 'table_name' => 'civicrm_recurring_entity',
124 'entity' => 'RecurringEntity',
125 'bao' => 'CRM_Core_BAO_RecurringEntity',
6a7e5e5d 126 'localizable' => 0,
e501603b
TO
127 ) ,
128 'entity_table' => array(
129 'name' => 'entity_table',
130 'type' => CRM_Utils_Type::T_STRING,
131 'title' => ts('Entity Table') ,
132 'description' => 'Physical tablename for entity, e.g. civicrm_event',
133 'required' => true,
134 'maxlength' => 64,
135 'size' => CRM_Utils_Type::BIG,
522a26c9 136 'table_name' => 'civicrm_recurring_entity',
137 'entity' => 'RecurringEntity',
138 'bao' => 'CRM_Core_BAO_RecurringEntity',
6a7e5e5d 139 'localizable' => 0,
e501603b
TO
140 ) ,
141 'mode' => array(
142 'name' => 'mode',
143 'type' => CRM_Utils_Type::T_BOOLEAN,
144 'title' => ts('Cascade Type') ,
145 'description' => '1-this entity, 2-this and the following entities, 3-all the entities',
146 'required' => true,
147 'default' => '1',
522a26c9 148 'table_name' => 'civicrm_recurring_entity',
149 'entity' => 'RecurringEntity',
150 'bao' => 'CRM_Core_BAO_RecurringEntity',
6a7e5e5d 151 'localizable' => 0,
e501603b
TO
152 ) ,
153 );
346aaaba 154 CRM_Core_DAO_AllCoreTables::invoke(__CLASS__, 'fields_callback', Civi::$statics[__CLASS__]['fields']);
e501603b 155 }
346aaaba 156 return Civi::$statics[__CLASS__]['fields'];
e501603b
TO
157 }
158 /**
bd8e0b14 159 * Return a mapping from field-name to the corresponding key (as used in fields()).
e501603b
TO
160 *
161 * @return array
bd8e0b14 162 * Array(string $name => string $uniqueName).
e501603b
TO
163 */
164 static function &fieldKeys() {
bd8e0b14
TO
165 if (!isset(Civi::$statics[__CLASS__]['fieldKeys'])) {
166 Civi::$statics[__CLASS__]['fieldKeys'] = array_flip(CRM_Utils_Array::collect('name', self::fields()));
e501603b 167 }
bd8e0b14 168 return Civi::$statics[__CLASS__]['fieldKeys'];
e501603b
TO
169 }
170 /**
171 * Returns the names of this table
172 *
173 * @return string
174 */
175 static function getTableName() {
176 return self::$_tableName;
177 }
178 /**
179 * Returns if this table needs to be logged
180 *
181 * @return boolean
182 */
183 function getLog() {
184 return self::$_log;
185 }
186 /**
187 * Returns the list of fields that can be imported
188 *
189 * @param bool $prefix
190 *
191 * @return array
192 */
193 static function &import($prefix = false) {
60808919
TO
194 $r = CRM_Core_DAO_AllCoreTables::getImports(__CLASS__, 'recurring_entity', $prefix, array());
195 return $r;
e501603b
TO
196 }
197 /**
198 * Returns the list of fields that can be exported
199 *
200 * @param bool $prefix
201 *
202 * @return array
203 */
204 static function &export($prefix = false) {
60808919
TO
205 $r = CRM_Core_DAO_AllCoreTables::getExports(__CLASS__, 'recurring_entity', $prefix, array());
206 return $r;
e501603b
TO
207 }
208}