Merge pull request #9023 from lcdservices/CRM-19354
[civicrm-core.git] / xml / templates / dao.tpl
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.7 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2016 |
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 /**
29 * @package CRM
30 * @copyright CiviCRM LLC (c) 2004-2016
31 *
32 * Generated from {$table.sourceFile}
33 * {$generated}
34 * (GenCodeChecksum:{$genCodeChecksum})
35 */
36
37 require_once 'CRM/Core/DAO.php';
38 require_once 'CRM/Utils/Type.php';
39
40 class {$table.className} extends CRM_Core_DAO {ldelim}
41
42 /**
43 * static instance to hold the table name
44 *
45 * @var string
46 */
47 static $_tableName = '{$table.name}';
48
49 /**
50 * static value to see if we should log any modifications to
51 * this table in the civicrm_log table
52 *
53 * @var boolean
54 */
55 static $_log = {$table.log};
56
57 {foreach from=$table.fields item=field}
58 /**
59 {if $field.comment}
60 * {$field.comment}
61 {/if}
62 *
63 * @var {$field.phpType}
64 */
65 public ${$field.name};
66
67 {/foreach} {* table.fields *}
68
69 /**
70 * class constructor
71 *
72 * @return {$table.name}
73 */
74 function __construct( ) {ldelim}
75 $this->__table = '{$table.name}';
76
77 parent::__construct( );
78 {rdelim}
79
80 {if $table.foreignKey || $table.dynamicForeignKey}
81 /**
82 * Returns foreign keys and entity references
83 *
84 * @return array
85 * [CRM_Core_Reference_Interface]
86 */
87 static function getReferenceColumns() {ldelim}
88 if (!isset(Civi::$statics[__CLASS__]['links'])) {ldelim}
89 Civi::$statics[__CLASS__]['links'] = static::createReferenceColumns(__CLASS__);
90 {foreach from=$table.foreignKey item=foreign}
91 Civi::$statics[__CLASS__]['links'][] = new CRM_Core_Reference_Basic(self::getTableName(), '{$foreign.name}', '{$foreign.table}', '{$foreign.key}');
92 {/foreach}
93
94 {foreach from=$table.dynamicForeignKey item=foreign}
95 Civi::$statics[__CLASS__]['links'][] = new CRM_Core_Reference_Dynamic(self::getTableName(), '{$foreign.idColumn}', NULL, '{$foreign.key|default:'id'}', '{$foreign.typeColumn}');
96 {/foreach}
97 CRM_Core_DAO_AllCoreTables::invoke(__CLASS__, 'links_callback', Civi::$statics[__CLASS__]['links']);
98 {rdelim}
99 return Civi::$statics[__CLASS__]['links'];
100 {rdelim}
101 {/if} {* table.foreignKey *}
102
103 /**
104 * Returns all the column names of this table
105 *
106 * @return array
107 */
108 static function &fields( ) {ldelim}
109 if ( ! isset(Civi::$statics[__CLASS__]['fields']) ) {ldelim}
110 Civi::$statics[__CLASS__]['fields'] = array (
111 {foreach from=$table.fields item=field}
112
113 {if $field.uniqueName}
114 '{$field.uniqueName}'
115 {else}
116 '{$field.name}'
117 {/if}
118 => array(
119 'name' => '{$field.name}',
120 'type' => {$field.crmType},
121 {if $field.title}
122 'title' => ts('{$field.title}'),
123 {/if}
124 {if $field.comment}
125 'description' => '{$field.comment|replace:"'":"\'"}',
126 {/if}
127 {if $field.required}
128 'required' => {$field.required},
129 {/if} {* field.required *}
130 {if $field.length}
131 'maxlength' => {$field.length},
132 {/if} {* field.length *}
133 {if $field.precision}
134 'precision' => array({$field.precision}),
135 {/if}
136 {if $field.size}
137 'size' => {$field.size},
138 {/if} {* field.size *}
139 {if $field.rows}
140 'rows' => {$field.rows},
141 {/if} {* field.rows *}
142 {if $field.cols}
143 'cols' => {$field.cols},
144 {/if} {* field.cols *}
145
146 {if $field.import}
147 'import' => {$field.import},
148 'where' => '{$table.name}.{$field.name}',
149 'headerPattern' => '{$field.headerPattern}',
150 'dataPattern' => '{$field.dataPattern}',
151 {/if} {* field.import *}
152 {if $field.export}
153 'export' => {$field.export},
154 {if ! $field.import}
155 'where' => '{$table.name}.{$field.name}',
156 'headerPattern' => '{$field.headerPattern}',
157 'dataPattern' => '{$field.dataPattern}',
158 {/if}
159 {/if} {* field.export *}
160 {if $field.rule}
161 'rule' => '{$field.rule}',
162 {/if} {* field.rule *}
163 {if $field.default}
164 'default' => '{if ($field.default[0]=="'" or $field.default[0]=='"')}{$field.default|substring:1:-1}{else}{$field.default}{/if}',
165 {/if} {* field.default *}
166
167 {if $field.FKClassName}
168 'FKClassName' => '{$field.FKClassName}',
169 {/if} {* field.FKClassName *}
170 {if $field.html}
171 {assign var=htmlOptions value=$field.html}
172 'html' => array(
173 {*{$htmlOptions|@print_array}*}
174 {foreach from=$htmlOptions key=optionKey item=optionValue}
175 '{$optionKey}' => '{$optionValue}',
176 {/foreach}
177 ),
178 {/if} {* field.html *}
179 {if $field.pseudoconstant}
180 {assign var=pseudoOptions value=$field.pseudoconstant}
181 'pseudoconstant' => array(
182 {*{$pseudoOptions|@print_array}*}
183 {foreach from=$pseudoOptions key=optionKey item=optionValue}
184 '{$optionKey}' => '{$optionValue}',
185 {/foreach}
186 )
187 {/if} {* field.pseudoconstant *} ),
188 {/foreach} {* table.fields *}
189 );
190 CRM_Core_DAO_AllCoreTables::invoke(__CLASS__, 'fields_callback', Civi::$statics[__CLASS__]['fields']);
191 {rdelim}
192 return Civi::$statics[__CLASS__]['fields'];
193 {rdelim}
194
195 /**
196 * Return a mapping from field-name to the corresponding key (as used in fields()).
197 *
198 * @return array
199 * Array(string $name => string $uniqueName).
200 */
201 static function &fieldKeys( ) {ldelim}
202 if (!isset(Civi::$statics[__CLASS__]['fieldKeys'])) {ldelim}
203 Civi::$statics[__CLASS__]['fieldKeys'] = array_flip(CRM_Utils_Array::collect('name', self::fields()));
204 {rdelim}
205 return Civi::$statics[__CLASS__]['fieldKeys'];
206 {rdelim}
207
208 /**
209 * Returns the names of this table
210 *
211 * @return string
212 */
213 static function getTableName( ) {ldelim}
214 {if $table.localizable}
215 return CRM_Core_DAO::getLocaleTableName( self::$_tableName );
216 {else}
217 return self::$_tableName;
218 {/if}
219 {rdelim}
220
221 /**
222 * Returns if this table needs to be logged
223 *
224 * @return boolean
225 */
226 function getLog( ) {ldelim}
227 return self::$_log;
228 {rdelim}
229
230 /**
231 * Returns the list of fields that can be imported
232 *
233 * @param bool $prefix
234 *
235 * @return array
236 */
237 static function &import( $prefix = false ) {ldelim}
238 $r = CRM_Core_DAO_AllCoreTables::getImports(__CLASS__, '{$table.labelName}', $prefix, array(
239 {if $table.foreignKey}{foreach from=$table.foreignKey item=foreign}
240 {if $foreign.import}'{$foreign.className}',{/if}
241 {/foreach}{/if}
242 ));
243 return $r;
244 {rdelim}
245
246 /**
247 * Returns the list of fields that can be exported
248 *
249 * @param bool $prefix
250 *
251 * @return array
252 */
253 static function &export( $prefix = false ) {ldelim}
254 $r = CRM_Core_DAO_AllCoreTables::getExports(__CLASS__, '{$table.labelName}', $prefix, array(
255 {if $table.foreignKey}{foreach from=$table.foreignKey item=foreign}
256 {if $foreign.export}'{$foreign.className}',{/if}
257 {/foreach}{/if}
258 ));
259 return $r;
260 {rdelim}
261
262 {rdelim}
263
264