Merge pull request #9662 from JMAConsulting/CRM-19792
[civicrm-core.git] / CRM / Core / DAO / Timezone.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/Core/Timezone.xml
32 * DO NOT EDIT. Generated by CRM_Core_CodeGen
33 * (GenCodeChecksum:42027e07849551eac4deddd0eb21da5d)
34 */
35 require_once 'CRM/Core/DAO.php';
36 require_once 'CRM/Utils/Type.php';
37 /**
38 * CRM_Core_DAO_Timezone constructor.
39 */
40 class CRM_Core_DAO_Timezone extends CRM_Core_DAO {
41 /**
42 * Static instance to hold the table name.
43 *
44 * @var string
45 */
46 static $_tableName = 'civicrm_timezone';
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 * Timezone Id
55 *
56 * @var int unsigned
57 */
58 public $id;
59 /**
60 * Timezone full name
61 *
62 * @var string
63 */
64 public $name;
65 /**
66 * ISO Code for timezone abbreviation
67 *
68 * @var string
69 */
70 public $abbreviation;
71 /**
72 * GMT name of the timezone
73 *
74 * @var string
75 */
76 public $gmt;
77 /**
78 *
79 * @var int
80 */
81 public $offset;
82 /**
83 * Country Id
84 *
85 * @var int unsigned
86 */
87 public $country_id;
88 /**
89 * Class constructor.
90 */
91 function __construct() {
92 $this->__table = 'civicrm_timezone';
93 parent::__construct();
94 }
95 /**
96 * Returns foreign keys and entity references.
97 *
98 * @return array
99 * [CRM_Core_Reference_Interface]
100 */
101 static function getReferenceColumns() {
102 if (!isset(Civi::$statics[__CLASS__]['links'])) {
103 Civi::$statics[__CLASS__]['links'] = static ::createReferenceColumns(__CLASS__);
104 Civi::$statics[__CLASS__]['links'][] = new CRM_Core_Reference_Basic(self::getTableName() , 'country_id', 'civicrm_country', 'id');
105 CRM_Core_DAO_AllCoreTables::invoke(__CLASS__, 'links_callback', Civi::$statics[__CLASS__]['links']);
106 }
107 return Civi::$statics[__CLASS__]['links'];
108 }
109 /**
110 * Returns all the column names of this table
111 *
112 * @return array
113 */
114 static function &fields() {
115 if (!isset(Civi::$statics[__CLASS__]['fields'])) {
116 Civi::$statics[__CLASS__]['fields'] = array(
117 'id' => array(
118 'name' => 'id',
119 'type' => CRM_Utils_Type::T_INT,
120 'title' => ts('Timezone ID') ,
121 'description' => 'Timezone Id',
122 'required' => true,
123 'table_name' => 'civicrm_timezone',
124 'entity' => 'Timezone',
125 'bao' => 'CRM_Core_DAO_Timezone',
126 ) ,
127 'name' => array(
128 'name' => 'name',
129 'type' => CRM_Utils_Type::T_STRING,
130 'title' => ts('Timezone Name') ,
131 'description' => 'Timezone full name',
132 'maxlength' => 64,
133 'size' => CRM_Utils_Type::BIG,
134 'table_name' => 'civicrm_timezone',
135 'entity' => 'Timezone',
136 'bao' => 'CRM_Core_DAO_Timezone',
137 ) ,
138 'abbreviation' => array(
139 'name' => 'abbreviation',
140 'type' => CRM_Utils_Type::T_STRING,
141 'title' => ts('Timezone Abbreviation') ,
142 'description' => 'ISO Code for timezone abbreviation',
143 'maxlength' => 3,
144 'size' => CRM_Utils_Type::FOUR,
145 'table_name' => 'civicrm_timezone',
146 'entity' => 'Timezone',
147 'bao' => 'CRM_Core_DAO_Timezone',
148 ) ,
149 'gmt' => array(
150 'name' => 'gmt',
151 'type' => CRM_Utils_Type::T_STRING,
152 'title' => ts('GMT Name of Timezone') ,
153 'description' => 'GMT name of the timezone',
154 'maxlength' => 64,
155 'size' => CRM_Utils_Type::BIG,
156 'table_name' => 'civicrm_timezone',
157 'entity' => 'Timezone',
158 'bao' => 'CRM_Core_DAO_Timezone',
159 ) ,
160 'offset' => array(
161 'name' => 'offset',
162 'type' => CRM_Utils_Type::T_INT,
163 'title' => ts('GMT Offset') ,
164 'table_name' => 'civicrm_timezone',
165 'entity' => 'Timezone',
166 'bao' => 'CRM_Core_DAO_Timezone',
167 ) ,
168 'country_id' => array(
169 'name' => 'country_id',
170 'type' => CRM_Utils_Type::T_INT,
171 'title' => ts('Country') ,
172 'description' => 'Country Id',
173 'required' => true,
174 'table_name' => 'civicrm_timezone',
175 'entity' => 'Timezone',
176 'bao' => 'CRM_Core_DAO_Timezone',
177 'FKClassName' => 'CRM_Core_DAO_Country',
178 ) ,
179 );
180 CRM_Core_DAO_AllCoreTables::invoke(__CLASS__, 'fields_callback', Civi::$statics[__CLASS__]['fields']);
181 }
182 return Civi::$statics[__CLASS__]['fields'];
183 }
184 /**
185 * Return a mapping from field-name to the corresponding key (as used in fields()).
186 *
187 * @return array
188 * Array(string $name => string $uniqueName).
189 */
190 static function &fieldKeys() {
191 if (!isset(Civi::$statics[__CLASS__]['fieldKeys'])) {
192 Civi::$statics[__CLASS__]['fieldKeys'] = array_flip(CRM_Utils_Array::collect('name', self::fields()));
193 }
194 return Civi::$statics[__CLASS__]['fieldKeys'];
195 }
196 /**
197 * Returns the names of this table
198 *
199 * @return string
200 */
201 static function getTableName() {
202 return self::$_tableName;
203 }
204 /**
205 * Returns if this table needs to be logged
206 *
207 * @return boolean
208 */
209 function getLog() {
210 return self::$_log;
211 }
212 /**
213 * Returns the list of fields that can be imported
214 *
215 * @param bool $prefix
216 *
217 * @return array
218 */
219 static function &import($prefix = false) {
220 $r = CRM_Core_DAO_AllCoreTables::getImports(__CLASS__, 'timezone', $prefix, array());
221 return $r;
222 }
223 /**
224 * Returns the list of fields that can be exported
225 *
226 * @param bool $prefix
227 *
228 * @return array
229 */
230 static function &export($prefix = false) {
231 $r = CRM_Core_DAO_AllCoreTables::getExports(__CLASS__, 'timezone', $prefix, array());
232 return $r;
233 }
234 }