CRM-20312 add field localisation data to DAO.
[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',
e501603b
TO
105 ) ,
106 'parent_id' => array(
107 'name' => 'parent_id',
108 'type' => CRM_Utils_Type::T_INT,
109 'title' => ts('Parent ID') ,
110 'description' => 'Recurring Entity Parent ID',
111 'required' => true,
522a26c9 112 'table_name' => 'civicrm_recurring_entity',
113 'entity' => 'RecurringEntity',
114 'bao' => 'CRM_Core_BAO_RecurringEntity',
e501603b
TO
115 ) ,
116 'entity_id' => array(
117 'name' => 'entity_id',
118 'type' => CRM_Utils_Type::T_INT,
119 'title' => ts('Entity ID') ,
120 'description' => 'Recurring Entity Child ID',
522a26c9 121 'table_name' => 'civicrm_recurring_entity',
122 'entity' => 'RecurringEntity',
123 'bao' => 'CRM_Core_BAO_RecurringEntity',
e501603b
TO
124 ) ,
125 'entity_table' => array(
126 'name' => 'entity_table',
127 'type' => CRM_Utils_Type::T_STRING,
128 'title' => ts('Entity Table') ,
129 'description' => 'Physical tablename for entity, e.g. civicrm_event',
130 'required' => true,
131 'maxlength' => 64,
132 'size' => CRM_Utils_Type::BIG,
522a26c9 133 'table_name' => 'civicrm_recurring_entity',
134 'entity' => 'RecurringEntity',
135 'bao' => 'CRM_Core_BAO_RecurringEntity',
e501603b
TO
136 ) ,
137 'mode' => array(
138 'name' => 'mode',
139 'type' => CRM_Utils_Type::T_BOOLEAN,
140 'title' => ts('Cascade Type') ,
141 'description' => '1-this entity, 2-this and the following entities, 3-all the entities',
142 'required' => true,
143 'default' => '1',
522a26c9 144 'table_name' => 'civicrm_recurring_entity',
145 'entity' => 'RecurringEntity',
146 'bao' => 'CRM_Core_BAO_RecurringEntity',
e501603b
TO
147 ) ,
148 );
346aaaba 149 CRM_Core_DAO_AllCoreTables::invoke(__CLASS__, 'fields_callback', Civi::$statics[__CLASS__]['fields']);
e501603b 150 }
346aaaba 151 return Civi::$statics[__CLASS__]['fields'];
e501603b
TO
152 }
153 /**
bd8e0b14 154 * Return a mapping from field-name to the corresponding key (as used in fields()).
e501603b
TO
155 *
156 * @return array
bd8e0b14 157 * Array(string $name => string $uniqueName).
e501603b
TO
158 */
159 static function &fieldKeys() {
bd8e0b14
TO
160 if (!isset(Civi::$statics[__CLASS__]['fieldKeys'])) {
161 Civi::$statics[__CLASS__]['fieldKeys'] = array_flip(CRM_Utils_Array::collect('name', self::fields()));
e501603b 162 }
bd8e0b14 163 return Civi::$statics[__CLASS__]['fieldKeys'];
e501603b
TO
164 }
165 /**
166 * Returns the names of this table
167 *
168 * @return string
169 */
170 static function getTableName() {
171 return self::$_tableName;
172 }
173 /**
174 * Returns if this table needs to be logged
175 *
176 * @return boolean
177 */
178 function getLog() {
179 return self::$_log;
180 }
181 /**
182 * Returns the list of fields that can be imported
183 *
184 * @param bool $prefix
185 *
186 * @return array
187 */
188 static function &import($prefix = false) {
60808919
TO
189 $r = CRM_Core_DAO_AllCoreTables::getImports(__CLASS__, 'recurring_entity', $prefix, array());
190 return $r;
e501603b
TO
191 }
192 /**
193 * Returns the list of fields that can be exported
194 *
195 * @param bool $prefix
196 *
197 * @return array
198 */
199 static function &export($prefix = false) {
60808919
TO
200 $r = CRM_Core_DAO_AllCoreTables::getExports(__CLASS__, 'recurring_entity', $prefix, array());
201 return $r;
e501603b
TO
202 }
203}