Merge pull request #20208 from seamuslee001/move_acl_test_trait
[civicrm-core.git] / xml / templates / dao.tpl
1 <?php
2 /**
3 * @package CRM
4 * @copyright CiviCRM LLC https://civicrm.org/licensing
5 *
6 * Generated from {$table.sourceFile}
7 * {$generated}
8 * (GenCodeChecksum:{$genCodeChecksum})
9 */
10 {$useHelper}
11 /**
12 * Database access object for the {$table.entity} entity.
13 */
14 class {$table.className} extends CRM_Core_DAO {ldelim}
15
16 const EXT = {$ext};
17 const TABLE_ADDED = '{$table.add}';
18 {if !empty($table.component)}const COMPONENT = '{$table.component}';{/if}
19
20 /**
21 * Static instance to hold the table name.
22 *
23 * @var string
24 */
25 public static $_tableName = '{$table.name}';
26
27 {if $table.icon}
28 /**
29 * Icon associated with this entity.
30 *
31 * @var string
32 */
33 public static $_icon = '{$table.icon}';
34 {/if}
35
36 {if $table.labelField}
37 /**
38 * Field to show when displaying a record.
39 *
40 * @var string
41 */
42 public static $_labelField = '{$table.labelField}';
43 {/if}
44 /**
45 * Should CiviCRM log any modifications to this table in the civicrm_log table.
46 *
47 * @var bool
48 */
49 public static $_log = {$table.log|strtoupper};
50 {if $table.paths}
51 /**
52 * Paths for accessing this entity in the UI.
53 *
54 * @var string[]
55 */
56 protected static $_paths = {$table.paths|@print_array};
57 {/if}
58
59 {foreach from=$table.fields item=field}
60 /**
61 {if $field.comment}
62 * {$field.comment|regex_replace:"/\n[ ]*/":"\n* "}
63 *
64 {/if}
65 * @var {$field.phpType}
66 */
67 public ${$field.name};
68
69 {/foreach} {* table.fields *}
70
71 /**
72 * Class constructor.
73 */
74 public function __construct( ) {ldelim}
75 $this->__table = '{$table.name}';
76
77 parent::__construct( );
78 {rdelim}
79
80 /**
81 * Returns localized title of this entity.
82 *
83 * @param bool $plural
84 * Whether to return the plural version of the title.
85 */
86 public static function getEntityTitle($plural = FALSE) {ldelim}
87 return $plural ? {$tsFunctionName}('{$table.titlePlural}') : {$tsFunctionName}('{$table.title}');
88 {rdelim}
89
90
91
92 {if $table.foreignKey || $table.dynamicForeignKey}
93 /**
94 * Returns foreign keys and entity references.
95 *
96 * @return array
97 * [CRM_Core_Reference_Interface]
98 */
99 public static function getReferenceColumns() {ldelim}
100 if (!isset(Civi::$statics[__CLASS__]['links'])) {ldelim}
101 Civi::$statics[__CLASS__]['links'] = static::createReferenceColumns(__CLASS__);
102 {foreach from=$table.foreignKey item=foreign}
103 Civi::$statics[__CLASS__]['links'][] = new CRM_Core_Reference_Basic(self::getTableName(), '{$foreign.name}', '{$foreign.table}', '{$foreign.key}');
104 {/foreach}
105
106 {foreach from=$table.dynamicForeignKey item=foreign}
107 Civi::$statics[__CLASS__]['links'][] = new CRM_Core_Reference_Dynamic(self::getTableName(), '{$foreign.idColumn}', NULL, '{$foreign.key|default:'id'}', '{$foreign.typeColumn}');
108 {/foreach}
109 CRM_Core_DAO_AllCoreTables::invoke(__CLASS__, 'links_callback', Civi::$statics[__CLASS__]['links']);
110 {rdelim}
111 return Civi::$statics[__CLASS__]['links'];
112 {rdelim}
113 {/if} {* table.foreignKey *}
114
115 /**
116 * Returns all the column names of this table
117 *
118 * @return array
119 */
120 public static function &fields( ) {ldelim}
121 if ( ! isset(Civi::$statics[__CLASS__]['fields']) ) {ldelim}
122 Civi::$statics[__CLASS__]['fields'] = array(
123 {foreach from=$table.fields item=field}
124
125 {if $field.uniqueName}
126 '{$field.uniqueName}'
127 {else}
128 '{$field.name}'
129 {/if}
130 => array(
131 'name' => '{$field.name}',
132 'type' => {$field.crmType},
133 {if $field.title}
134 'title' => {$tsFunctionName}('{$field.title}'),
135 {/if}
136 {if $field.comment}
137 'description' => {$tsFunctionName}('{$field.comment|replace:"'":"\'"}'),
138 {/if}
139 {if $field.required}
140 'required' => {$field.required|strtoupper},
141 {/if} {* field.required *}
142 {if $field.length}
143 'maxlength' => {$field.length},
144 {/if} {* field.length *}
145 {if $field.precision}
146 'precision' => array({$field.precision}),
147 {/if}
148 {if $field.size}
149 'size' => {$field.size},
150 {/if} {* field.size *}
151 {if $field.rows}
152 'rows' => {$field.rows},
153 {/if} {* field.rows *}
154 {if $field.cols}
155 'cols' => {$field.cols},
156 {/if} {* field.cols *}
157
158 {if $field.import}
159 'import' => {$field.import|strtoupper},
160
161 {/if} {* field.import *}
162 'where' => '{$table.name}.{$field.name}',
163 {if $field.headerPattern}'headerPattern' => '{$field.headerPattern}',{/if}
164 {if $field.dataPattern}'dataPattern' => '{$field.dataPattern}',{/if}
165 {if $field.export}
166 'export' => {$field.export|strtoupper},
167 {/if} {* field.export *}
168 {if $field.contactType}
169 'contactType' => {if $field.contactType == 'null'}NULL{else}'{$field.contactType}'{/if},
170 {/if}
171 {if $field.rule}
172 'rule' => '{$field.rule}',
173 {/if} {* field.rule *}
174 {if !empty($field.permission)}
175 'permission' => {$field.permission|@print_array},
176 {/if}
177 {if $field.default || $field.default === '0'}
178 'default' => '{if ($field.default[0]=="'" or $field.default[0]=='"')}{$field.default|substring:1:-1}{else}{$field.default}{/if}',
179 {/if} {* field.default *}
180 'table_name' => '{$table.name}',
181 'entity' => '{$table.entity}',
182 'bao' => '{$table.bao}',
183 'localizable' => {if $field.localizable}1{else}0{/if},
184 {if $field.localize_context}'localize_context' => '{$field.localize_context}',{/if}
185
186 {if $field.FKClassName}
187 'FKClassName' => '{$field.FKClassName}',
188 {/if}
189 {if !empty($field.component)}
190 'component' => '{$field.component}',
191 {/if}
192 {if $field.serialize}
193 'serialize' => self::SERIALIZE_{$field.serialize|strtoupper},
194 {/if}
195 {if $field.uniqueTitle}
196 'unique_title' => {$tsFunctionName}('{$field.uniqueTitle}'),
197 {/if}
198 {if $field.html}
199 'html' => array(
200 {foreach from=$field.html item=val key=key}
201 '{$key}' => {if $key eq 'label'}{$tsFunctionName}("{$val}"){else}'{$val}'{/if},
202 {/foreach}
203 ),
204 {/if}
205 {if $field.pseudoconstant}
206 'pseudoconstant' => {$field.pseudoconstant|@print_array},
207 {/if}
208 {if $field.readonly || $field.name === $table.primaryKey.name}
209 'readonly' => TRUE,
210 {/if}
211 'add' => {if $field.add}'{$field.add}'{else}NULL{/if},
212 ),
213 {/foreach} {* table.fields *}
214 );
215 CRM_Core_DAO_AllCoreTables::invoke(__CLASS__, 'fields_callback', Civi::$statics[__CLASS__]['fields']);
216 {rdelim}
217 return Civi::$statics[__CLASS__]['fields'];
218 {rdelim}
219
220 /**
221 * Return a mapping from field-name to the corresponding key (as used in fields()).
222 *
223 * @return array
224 * Array(string $name => string $uniqueName).
225 */
226 public static function &fieldKeys( ) {ldelim}
227 if (!isset(Civi::$statics[__CLASS__]['fieldKeys'])) {ldelim}
228 Civi::$statics[__CLASS__]['fieldKeys'] = array_flip(CRM_Utils_Array::collect('name', self::fields()));
229 {rdelim}
230 return Civi::$statics[__CLASS__]['fieldKeys'];
231 {rdelim}
232
233 /**
234 * Returns the names of this table
235 *
236 * @return string
237 */
238 public static function getTableName( ) {ldelim}
239 {if $table.localizable}
240 return CRM_Core_DAO::getLocaleTableName( self::$_tableName );
241 {else}
242 return self::$_tableName;
243 {/if}
244 {rdelim}
245
246 /**
247 * Returns if this table needs to be logged
248 *
249 * @return bool
250 */
251 public function getLog( ) {ldelim}
252 return self::$_log;
253 {rdelim}
254
255 /**
256 * Returns the list of fields that can be imported
257 *
258 * @param bool $prefix
259 *
260 * @return array
261 */
262 public static function &import( $prefix = FALSE ) {ldelim}
263 $r = CRM_Core_DAO_AllCoreTables::getImports(__CLASS__, '{$table.labelName}', $prefix, array(
264 {if $table.foreignKey}{foreach from=$table.foreignKey item=foreign}
265 {if $foreign.import}'{$foreign.className}',{/if}
266 {/foreach}{/if}
267 ));
268 return $r;
269 {rdelim}
270
271 /**
272 * Returns the list of fields that can be exported
273 *
274 * @param bool $prefix
275 *
276 * @return array
277 */
278 public static function &export( $prefix = FALSE ) {ldelim}
279 $r = CRM_Core_DAO_AllCoreTables::getExports(__CLASS__, '{$table.labelName}', $prefix, array(
280 {if $table.foreignKey}{foreach from=$table.foreignKey item=foreign}
281 {if $foreign.export}'{$foreign.className}',{/if}
282 {/foreach}{/if}
283 ));
284 return $r;
285 {rdelim}
286
287 /**
288 * Returns the list of indices
289 *
290 * @param bool $localize
291 *
292 * @return array
293 */
294 public static function indices($localize = TRUE) {ldelim}
295 $indices = {$indicesPhp};
296 return ($localize && !empty($indices)) ? CRM_Core_DAO_AllCoreTables::multilingualize(__CLASS__, $indices) : $indices;
297 {rdelim}
298
299 {rdelim}