Merge pull request #12004 from samuelsov/dev/core#30#2
[civicrm-core.git] / CRM / Member / DAO / MembershipType.php
CommitLineData
e501603b 1<?php
c3fc2621 2
e501603b
TO
3/**
4 * @package CRM
8c9251b3 5 * @copyright CiviCRM LLC (c) 2004-2018
e501603b
TO
6 *
7 * Generated from xml/schema/CRM/Member/MembershipType.xml
8 * DO NOT EDIT. Generated by CRM_Core_CodeGen
6f85d058 9 * (GenCodeChecksum:f79b8b7075dd740416b24eff8ebd147b)
e501603b 10 */
c3fc2621 11
f41f0342 12/**
c3fc2621 13 * Database access object for the MembershipType entity.
f41f0342 14 */
e501603b 15class CRM_Member_DAO_MembershipType extends CRM_Core_DAO {
c3fc2621 16
e501603b 17 /**
f41f0342 18 * Static instance to hold the table name.
e501603b
TO
19 *
20 * @var string
21 */
22 static $_tableName = 'civicrm_membership_type';
c3fc2621 23
e501603b 24 /**
f41f0342 25 * Should CiviCRM log any modifications to this table in the civicrm_log table.
e501603b 26 *
c3fc2621 27 * @var bool
e501603b 28 */
c3fc2621
CW
29 static $_log = TRUE;
30
e501603b
TO
31 /**
32 * Membership Id
33 *
34 * @var int unsigned
35 */
36 public $id;
c3fc2621 37
e501603b
TO
38 /**
39 * Which Domain is this match entry for
40 *
41 * @var int unsigned
42 */
43 public $domain_id;
c3fc2621 44
e501603b
TO
45 /**
46 * Name of Membership Type
47 *
48 * @var string
49 */
50 public $name;
c3fc2621 51
e501603b
TO
52 /**
53 * Description of Membership Type
54 *
55 * @var string
56 */
57 public $description;
c3fc2621 58
e501603b
TO
59 /**
60 * Owner organization for this membership type. FK to Contact ID
61 *
62 * @var int unsigned
63 */
64 public $member_of_contact_id;
c3fc2621 65
e501603b
TO
66 /**
67 * If membership is paid by a contribution - what financial type should be used. FK to civicrm_financial_type.id
68 *
69 * @var int unsigned
70 */
71 public $financial_type_id;
c3fc2621 72
e501603b
TO
73 /**
74 * Minimum fee for this membership (0 for free/complimentary memberships).
75 *
76 * @var float
77 */
78 public $minimum_fee;
c3fc2621 79
e501603b
TO
80 /**
81 * Unit in which membership period is expressed.
82 *
83 * @var string
84 */
85 public $duration_unit;
c3fc2621 86
e501603b
TO
87 /**
88 * Number of duration units in membership period (e.g. 1 year, 12 months).
89 *
90 * @var int
91 */
92 public $duration_interval;
c3fc2621 93
e501603b
TO
94 /**
95 * Rolling membership period starts on signup date. Fixed membership periods start on fixed_period_start_day.
96 *
97 * @var string
98 */
99 public $period_type;
c3fc2621 100
e501603b
TO
101 /**
102 * For fixed period memberships, month and day (mmdd) on which subscription/membership will start. Period start is back-dated unless after rollover day.
103 *
104 * @var int
105 */
106 public $fixed_period_start_day;
c3fc2621 107
e501603b
TO
108 /**
109 * For fixed period memberships, signups after this day (mmdd) rollover to next period.
110 *
111 * @var int
112 */
113 public $fixed_period_rollover_day;
c3fc2621 114
e501603b
TO
115 /**
116 * FK to Relationship Type ID
117 *
118 * @var string
119 */
120 public $relationship_type_id;
c3fc2621 121
e501603b 122 /**
e501603b
TO
123 * @var string
124 */
125 public $relationship_direction;
c3fc2621 126
e501603b
TO
127 /**
128 * Maximum number of related memberships.
129 *
130 * @var int
131 */
132 public $max_related;
c3fc2621 133
e501603b 134 /**
e501603b
TO
135 * @var string
136 */
137 public $visibility;
c3fc2621 138
e501603b 139 /**
e501603b
TO
140 * @var int
141 */
142 public $weight;
c3fc2621 143
e501603b
TO
144 /**
145 * Receipt Text for membership signup
146 *
147 * @var string
148 */
149 public $receipt_text_signup;
c3fc2621 150
e501603b
TO
151 /**
152 * Receipt Text for membership renewal
153 *
154 * @var string
155 */
156 public $receipt_text_renewal;
c3fc2621 157
e501603b
TO
158 /**
159 * 0 = No auto-renew option; 1 = Give option, but not required; 2 = Auto-renew required;
160 *
161 * @var boolean
162 */
163 public $auto_renew;
c3fc2621 164
e501603b
TO
165 /**
166 * Is this membership_type enabled
167 *
168 * @var boolean
169 */
170 public $is_active;
c3fc2621 171
e501603b 172 /**
f41f0342 173 * Class constructor.
e501603b 174 */
c3fc2621 175 public function __construct() {
e501603b
TO
176 $this->__table = 'civicrm_membership_type';
177 parent::__construct();
178 }
c3fc2621 179
e501603b 180 /**
f41f0342 181 * Returns foreign keys and entity references.
e501603b
TO
182 *
183 * @return array
184 * [CRM_Core_Reference_Interface]
185 */
c3fc2621 186 public static function getReferenceColumns() {
346aaaba
TO
187 if (!isset(Civi::$statics[__CLASS__]['links'])) {
188 Civi::$statics[__CLASS__]['links'] = static ::createReferenceColumns(__CLASS__);
c3fc2621
CW
189 Civi::$statics[__CLASS__]['links'][] = new CRM_Core_Reference_Basic(self::getTableName(), 'domain_id', 'civicrm_domain', 'id');
190 Civi::$statics[__CLASS__]['links'][] = new CRM_Core_Reference_Basic(self::getTableName(), 'member_of_contact_id', 'civicrm_contact', 'id');
191 Civi::$statics[__CLASS__]['links'][] = new CRM_Core_Reference_Basic(self::getTableName(), 'financial_type_id', 'civicrm_financial_type', 'id');
346aaaba 192 CRM_Core_DAO_AllCoreTables::invoke(__CLASS__, 'links_callback', Civi::$statics[__CLASS__]['links']);
e501603b 193 }
346aaaba 194 return Civi::$statics[__CLASS__]['links'];
e501603b 195 }
c3fc2621 196
e501603b
TO
197 /**
198 * Returns all the column names of this table
199 *
200 * @return array
201 */
c3fc2621 202 public static function &fields() {
346aaaba 203 if (!isset(Civi::$statics[__CLASS__]['fields'])) {
c3fc2621
CW
204 Civi::$statics[__CLASS__]['fields'] = [
205 'id' => [
e501603b
TO
206 'name' => 'id',
207 'type' => CRM_Utils_Type::T_INT,
c3fc2621 208 'title' => ts('Membership Type ID'),
e501603b 209 'description' => 'Membership Id',
c3fc2621 210 'required' => TRUE,
522a26c9 211 'table_name' => 'civicrm_membership_type',
212 'entity' => 'MembershipType',
213 'bao' => 'CRM_Member_BAO_MembershipType',
6a7e5e5d 214 'localizable' => 0,
c3fc2621
CW
215 ],
216 'domain_id' => [
e501603b
TO
217 'name' => 'domain_id',
218 'type' => CRM_Utils_Type::T_INT,
c3fc2621 219 'title' => ts('Membership Type Domain'),
e501603b 220 'description' => 'Which Domain is this match entry for',
c3fc2621 221 'required' => TRUE,
522a26c9 222 'table_name' => 'civicrm_membership_type',
223 'entity' => 'MembershipType',
224 'bao' => 'CRM_Member_BAO_MembershipType',
6a7e5e5d 225 'localizable' => 0,
e501603b 226 'FKClassName' => 'CRM_Core_DAO_Domain',
c3fc2621 227 'pseudoconstant' => [
e501603b
TO
228 'table' => 'civicrm_domain',
229 'keyColumn' => 'id',
230 'labelColumn' => 'name',
c3fc2621
CW
231 ]
232 ],
233 'membership_type' => [
e501603b
TO
234 'name' => 'name',
235 'type' => CRM_Utils_Type::T_STRING,
c3fc2621 236 'title' => ts('Membership Type'),
e501603b
TO
237 'description' => 'Name of Membership Type',
238 'maxlength' => 128,
239 'size' => CRM_Utils_Type::HUGE,
c3fc2621 240 'import' => TRUE,
e501603b
TO
241 'where' => 'civicrm_membership_type.name',
242 'headerPattern' => '',
243 'dataPattern' => '',
c3fc2621 244 'export' => TRUE,
522a26c9 245 'table_name' => 'civicrm_membership_type',
246 'entity' => 'MembershipType',
247 'bao' => 'CRM_Member_BAO_MembershipType',
6a7e5e5d 248 'localizable' => 1,
6f85d058 249 'html' => [
250 'type' => 'Text',
251 ],
c3fc2621
CW
252 ],
253 'description' => [
e501603b
TO
254 'name' => 'description',
255 'type' => CRM_Utils_Type::T_STRING,
c3fc2621 256 'title' => ts('Membership Type Description'),
e501603b
TO
257 'description' => 'Description of Membership Type',
258 'maxlength' => 255,
259 'size' => CRM_Utils_Type::HUGE,
522a26c9 260 'table_name' => 'civicrm_membership_type',
261 'entity' => 'MembershipType',
262 'bao' => 'CRM_Member_BAO_MembershipType',
6a7e5e5d 263 'localizable' => 1,
c3fc2621 264 'html' => [
e501603b 265 'type' => 'TextArea',
c3fc2621
CW
266 ],
267 ],
268 'member_of_contact_id' => [
e501603b
TO
269 'name' => 'member_of_contact_id',
270 'type' => CRM_Utils_Type::T_INT,
c3fc2621 271 'title' => ts('Membership Type Organization'),
e501603b 272 'description' => 'Owner organization for this membership type. FK to Contact ID',
c3fc2621 273 'required' => TRUE,
522a26c9 274 'table_name' => 'civicrm_membership_type',
275 'entity' => 'MembershipType',
276 'bao' => 'CRM_Member_BAO_MembershipType',
6a7e5e5d 277 'localizable' => 0,
e501603b 278 'FKClassName' => 'CRM_Contact_DAO_Contact',
c3fc2621
CW
279 ],
280 'financial_type_id' => [
e501603b
TO
281 'name' => 'financial_type_id',
282 'type' => CRM_Utils_Type::T_INT,
c3fc2621 283 'title' => ts('Membership Financial Type'),
e501603b 284 'description' => 'If membership is paid by a contribution - what financial type should be used. FK to civicrm_financial_type.id',
c3fc2621 285 'required' => TRUE,
522a26c9 286 'table_name' => 'civicrm_membership_type',
287 'entity' => 'MembershipType',
288 'bao' => 'CRM_Member_BAO_MembershipType',
6a7e5e5d 289 'localizable' => 0,
e501603b 290 'FKClassName' => 'CRM_Financial_DAO_FinancialType',
c3fc2621 291 'pseudoconstant' => [
e501603b
TO
292 'table' => 'civicrm_financial_type',
293 'keyColumn' => 'id',
294 'labelColumn' => 'name',
c3fc2621
CW
295 ]
296 ],
297 'minimum_fee' => [
e501603b
TO
298 'name' => 'minimum_fee',
299 'type' => CRM_Utils_Type::T_MONEY,
6f85d058 300 'title' => ts('Membership Type Minimum Fee'),
e501603b 301 'description' => 'Minimum fee for this membership (0 for free/complimentary memberships).',
c3fc2621 302 'precision' => [
25e0f950
MW
303 18,
304 9
c3fc2621 305 ],
522a26c9 306 'table_name' => 'civicrm_membership_type',
307 'entity' => 'MembershipType',
308 'bao' => 'CRM_Member_BAO_MembershipType',
6a7e5e5d 309 'localizable' => 0,
6f85d058 310 'html' => [
311 'type' => 'Text',
312 ],
c3fc2621
CW
313 ],
314 'duration_unit' => [
e501603b
TO
315 'name' => 'duration_unit',
316 'type' => CRM_Utils_Type::T_STRING,
c3fc2621 317 'title' => ts('Membership Type Duration Unit'),
e501603b
TO
318 'description' => 'Unit in which membership period is expressed.',
319 'maxlength' => 8,
320 'size' => CRM_Utils_Type::EIGHT,
522a26c9 321 'table_name' => 'civicrm_membership_type',
322 'entity' => 'MembershipType',
323 'bao' => 'CRM_Member_BAO_MembershipType',
6a7e5e5d 324 'localizable' => 0,
c3fc2621 325 'html' => [
e501603b 326 'type' => 'Select',
c3fc2621
CW
327 ],
328 'pseudoconstant' => [
e501603b 329 'callback' => 'CRM_Core_SelectValues::membershipTypeUnitList',
c3fc2621
CW
330 ]
331 ],
332 'duration_interval' => [
e501603b
TO
333 'name' => 'duration_interval',
334 'type' => CRM_Utils_Type::T_INT,
c3fc2621 335 'title' => ts('Membership Type Duration Interval'),
e501603b 336 'description' => 'Number of duration units in membership period (e.g. 1 year, 12 months).',
522a26c9 337 'table_name' => 'civicrm_membership_type',
338 'entity' => 'MembershipType',
339 'bao' => 'CRM_Member_BAO_MembershipType',
6a7e5e5d 340 'localizable' => 0,
6f85d058 341 'html' => [
342 'type' => 'Text',
343 ],
c3fc2621
CW
344 ],
345 'period_type' => [
e501603b
TO
346 'name' => 'period_type',
347 'type' => CRM_Utils_Type::T_STRING,
c3fc2621 348 'title' => ts('Membership Type Plan'),
e501603b
TO
349 'description' => 'Rolling membership period starts on signup date. Fixed membership periods start on fixed_period_start_day.',
350 'maxlength' => 8,
351 'size' => CRM_Utils_Type::EIGHT,
522a26c9 352 'table_name' => 'civicrm_membership_type',
353 'entity' => 'MembershipType',
354 'bao' => 'CRM_Member_BAO_MembershipType',
6a7e5e5d 355 'localizable' => 0,
6f85d058 356 'html' => [
357 'type' => 'Select',
358 ],
c3fc2621 359 'pseudoconstant' => [
e501603b 360 'callback' => 'CRM_Core_SelectValues::periodType',
c3fc2621
CW
361 ]
362 ],
363 'fixed_period_start_day' => [
e501603b
TO
364 'name' => 'fixed_period_start_day',
365 'type' => CRM_Utils_Type::T_INT,
c3fc2621 366 'title' => ts('Fixed Period Start Day'),
e501603b 367 'description' => 'For fixed period memberships, month and day (mmdd) on which subscription/membership will start. Period start is back-dated unless after rollover day.',
522a26c9 368 'table_name' => 'civicrm_membership_type',
369 'entity' => 'MembershipType',
370 'bao' => 'CRM_Member_BAO_MembershipType',
6a7e5e5d 371 'localizable' => 0,
c3fc2621
CW
372 ],
373 'fixed_period_rollover_day' => [
e501603b
TO
374 'name' => 'fixed_period_rollover_day',
375 'type' => CRM_Utils_Type::T_INT,
c3fc2621 376 'title' => ts('Fixed Period Rollover Day'),
e501603b 377 'description' => 'For fixed period memberships, signups after this day (mmdd) rollover to next period.',
522a26c9 378 'table_name' => 'civicrm_membership_type',
379 'entity' => 'MembershipType',
380 'bao' => 'CRM_Member_BAO_MembershipType',
6a7e5e5d 381 'localizable' => 0,
c3fc2621
CW
382 ],
383 'relationship_type_id' => [
e501603b
TO
384 'name' => 'relationship_type_id',
385 'type' => CRM_Utils_Type::T_STRING,
c3fc2621 386 'title' => ts('Membership Type Relationship'),
e501603b
TO
387 'description' => 'FK to Relationship Type ID',
388 'maxlength' => 64,
389 'size' => CRM_Utils_Type::BIG,
522a26c9 390 'table_name' => 'civicrm_membership_type',
391 'entity' => 'MembershipType',
392 'bao' => 'CRM_Member_BAO_MembershipType',
6a7e5e5d 393 'localizable' => 0,
c3fc2621
CW
394 ],
395 'relationship_direction' => [
e501603b
TO
396 'name' => 'relationship_direction',
397 'type' => CRM_Utils_Type::T_STRING,
c3fc2621 398 'title' => ts('Relationship Direction'),
e501603b
TO
399 'maxlength' => 128,
400 'size' => CRM_Utils_Type::HUGE,
522a26c9 401 'table_name' => 'civicrm_membership_type',
402 'entity' => 'MembershipType',
403 'bao' => 'CRM_Member_BAO_MembershipType',
6a7e5e5d 404 'localizable' => 0,
c3fc2621
CW
405 ],
406 'max_related' => [
e501603b
TO
407 'name' => 'max_related',
408 'type' => CRM_Utils_Type::T_INT,
c3fc2621 409 'title' => ts('Max Related Members for Type'),
e501603b 410 'description' => 'Maximum number of related memberships.',
522a26c9 411 'table_name' => 'civicrm_membership_type',
412 'entity' => 'MembershipType',
413 'bao' => 'CRM_Member_BAO_MembershipType',
6a7e5e5d 414 'localizable' => 0,
6f85d058 415 'html' => [
416 'type' => 'Text',
417 ],
c3fc2621
CW
418 ],
419 'visibility' => [
e501603b
TO
420 'name' => 'visibility',
421 'type' => CRM_Utils_Type::T_STRING,
c3fc2621 422 'title' => ts('Visible'),
e501603b
TO
423 'maxlength' => 64,
424 'size' => CRM_Utils_Type::BIG,
522a26c9 425 'table_name' => 'civicrm_membership_type',
426 'entity' => 'MembershipType',
427 'bao' => 'CRM_Member_BAO_MembershipType',
6a7e5e5d 428 'localizable' => 0,
c3fc2621 429 'html' => [
e501603b 430 'type' => 'Select',
c3fc2621
CW
431 ],
432 'pseudoconstant' => [
e501603b 433 'callback' => 'CRM_Core_SelectValues::memberVisibility',
c3fc2621
CW
434 ]
435 ],
436 'weight' => [
e501603b
TO
437 'name' => 'weight',
438 'type' => CRM_Utils_Type::T_INT,
c3fc2621 439 'title' => ts('Order'),
522a26c9 440 'table_name' => 'civicrm_membership_type',
441 'entity' => 'MembershipType',
442 'bao' => 'CRM_Member_BAO_MembershipType',
6a7e5e5d 443 'localizable' => 0,
6f85d058 444 'html' => [
445 'type' => 'Text',
446 ],
c3fc2621
CW
447 ],
448 'receipt_text_signup' => [
e501603b
TO
449 'name' => 'receipt_text_signup',
450 'type' => CRM_Utils_Type::T_STRING,
c3fc2621 451 'title' => ts('Membership Type Receipt Text'),
e501603b
TO
452 'description' => 'Receipt Text for membership signup',
453 'maxlength' => 255,
454 'size' => CRM_Utils_Type::HUGE,
522a26c9 455 'table_name' => 'civicrm_membership_type',
456 'entity' => 'MembershipType',
457 'bao' => 'CRM_Member_BAO_MembershipType',
6a7e5e5d 458 'localizable' => 0,
c3fc2621 459 'html' => [
e501603b 460 'type' => 'TextArea',
c3fc2621
CW
461 ],
462 ],
463 'receipt_text_renewal' => [
e501603b
TO
464 'name' => 'receipt_text_renewal',
465 'type' => CRM_Utils_Type::T_STRING,
c3fc2621 466 'title' => ts('Membership Type Renewal Text'),
e501603b
TO
467 'description' => 'Receipt Text for membership renewal',
468 'maxlength' => 255,
469 'size' => CRM_Utils_Type::HUGE,
522a26c9 470 'table_name' => 'civicrm_membership_type',
471 'entity' => 'MembershipType',
472 'bao' => 'CRM_Member_BAO_MembershipType',
6a7e5e5d 473 'localizable' => 0,
c3fc2621 474 'html' => [
e501603b 475 'type' => 'TextArea',
c3fc2621
CW
476 ],
477 ],
478 'auto_renew' => [
e501603b
TO
479 'name' => 'auto_renew',
480 'type' => CRM_Utils_Type::T_BOOLEAN,
c3fc2621 481 'title' => ts('Auto Renew'),
e501603b 482 'description' => '0 = No auto-renew option; 1 = Give option, but not required; 2 = Auto-renew required;',
522a26c9 483 'table_name' => 'civicrm_membership_type',
484 'entity' => 'MembershipType',
485 'bao' => 'CRM_Member_BAO_MembershipType',
6a7e5e5d 486 'localizable' => 0,
c3fc2621 487 'pseudoconstant' => [
e501603b 488 'callback' => 'CRM_Core_SelectValues::memberAutoRenew',
c3fc2621
CW
489 ]
490 ],
491 'is_active' => [
e501603b
TO
492 'name' => 'is_active',
493 'type' => CRM_Utils_Type::T_BOOLEAN,
c3fc2621 494 'title' => ts('Is Active'),
e501603b
TO
495 'description' => 'Is this membership_type enabled',
496 'default' => '1',
522a26c9 497 'table_name' => 'civicrm_membership_type',
498 'entity' => 'MembershipType',
499 'bao' => 'CRM_Member_BAO_MembershipType',
6a7e5e5d 500 'localizable' => 0,
6f85d058 501 'html' => [
502 'type' => 'CheckBox',
503 ],
c3fc2621
CW
504 ],
505 ];
346aaaba 506 CRM_Core_DAO_AllCoreTables::invoke(__CLASS__, 'fields_callback', Civi::$statics[__CLASS__]['fields']);
e501603b 507 }
346aaaba 508 return Civi::$statics[__CLASS__]['fields'];
e501603b 509 }
c3fc2621 510
e501603b 511 /**
bd8e0b14 512 * Return a mapping from field-name to the corresponding key (as used in fields()).
e501603b
TO
513 *
514 * @return array
bd8e0b14 515 * Array(string $name => string $uniqueName).
e501603b 516 */
c3fc2621 517 public static function &fieldKeys() {
bd8e0b14
TO
518 if (!isset(Civi::$statics[__CLASS__]['fieldKeys'])) {
519 Civi::$statics[__CLASS__]['fieldKeys'] = array_flip(CRM_Utils_Array::collect('name', self::fields()));
e501603b 520 }
bd8e0b14 521 return Civi::$statics[__CLASS__]['fieldKeys'];
e501603b 522 }
c3fc2621 523
e501603b
TO
524 /**
525 * Returns the names of this table
526 *
527 * @return string
528 */
c3fc2621 529 public static function getTableName() {
e501603b
TO
530 return CRM_Core_DAO::getLocaleTableName(self::$_tableName);
531 }
c3fc2621 532
e501603b
TO
533 /**
534 * Returns if this table needs to be logged
535 *
c3fc2621 536 * @return bool
e501603b 537 */
c3fc2621 538 public function getLog() {
e501603b
TO
539 return self::$_log;
540 }
c3fc2621 541
e501603b
TO
542 /**
543 * Returns the list of fields that can be imported
544 *
545 * @param bool $prefix
546 *
547 * @return array
548 */
c3fc2621
CW
549 public static function &import($prefix = FALSE) {
550 $r = CRM_Core_DAO_AllCoreTables::getImports(__CLASS__, 'membership_type', $prefix, []);
60808919 551 return $r;
e501603b 552 }
c3fc2621 553
e501603b
TO
554 /**
555 * Returns the list of fields that can be exported
556 *
557 * @param bool $prefix
558 *
559 * @return array
560 */
c3fc2621
CW
561 public static function &export($prefix = FALSE) {
562 $r = CRM_Core_DAO_AllCoreTables::getExports(__CLASS__, 'membership_type', $prefix, []);
60808919 563 return $r;
e501603b 564 }
c3fc2621 565
e7a6b91a
AS
566 /**
567 * Returns the list of indices
c3fc2621
CW
568 *
569 * @param bool $localize
570 *
571 * @return array
e7a6b91a
AS
572 */
573 public static function indices($localize = TRUE) {
c3fc2621
CW
574 $indices = [
575 'index_relationship_type_id' => [
e7a6b91a 576 'name' => 'index_relationship_type_id',
c3fc2621 577 'field' => [
e7a6b91a 578 0 => 'relationship_type_id',
c3fc2621
CW
579 ],
580 'localizable' => FALSE,
e7a6b91a 581 'sig' => 'civicrm_membership_type::0::relationship_type_id',
c3fc2621
CW
582 ],
583 ];
e7a6b91a
AS
584 return ($localize && !empty($indices)) ? CRM_Core_DAO_AllCoreTables::multilingualize(__CLASS__, $indices) : $indices;
585 }
c3fc2621 586
e501603b 587}