Merge pull request #12925 from eileenmcnaughton/setting
[civicrm-core.git] / CRM / Contact / DAO / GroupNesting.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/Contact/GroupNesting.xml
8 * DO NOT EDIT. Generated by CRM_Core_CodeGen
022785d8 9 * (GenCodeChecksum:00fc9bc828e1b87acf20aa16b24b1bac)
e501603b 10 */
c3fc2621 11
f41f0342 12/**
c3fc2621 13 * Database access object for the GroupNesting entity.
f41f0342 14 */
e501603b 15class CRM_Contact_DAO_GroupNesting 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_group_nesting';
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 * Relationship ID
33 *
34 * @var int unsigned
35 */
36 public $id;
c3fc2621 37
e501603b
TO
38 /**
39 * ID of the child group
40 *
41 * @var int unsigned
42 */
43 public $child_group_id;
c3fc2621 44
e501603b
TO
45 /**
46 * ID of the parent group
47 *
48 * @var int unsigned
49 */
50 public $parent_group_id;
c3fc2621 51
e501603b 52 /**
f41f0342 53 * Class constructor.
e501603b 54 */
c3fc2621 55 public function __construct() {
e501603b
TO
56 $this->__table = 'civicrm_group_nesting';
57 parent::__construct();
58 }
c3fc2621 59
e501603b 60 /**
f41f0342 61 * Returns foreign keys and entity references.
e501603b
TO
62 *
63 * @return array
64 * [CRM_Core_Reference_Interface]
65 */
c3fc2621 66 public static function getReferenceColumns() {
346aaaba
TO
67 if (!isset(Civi::$statics[__CLASS__]['links'])) {
68 Civi::$statics[__CLASS__]['links'] = static ::createReferenceColumns(__CLASS__);
c3fc2621
CW
69 Civi::$statics[__CLASS__]['links'][] = new CRM_Core_Reference_Basic(self::getTableName(), 'child_group_id', 'civicrm_group', 'id');
70 Civi::$statics[__CLASS__]['links'][] = new CRM_Core_Reference_Basic(self::getTableName(), 'parent_group_id', 'civicrm_group', 'id');
346aaaba 71 CRM_Core_DAO_AllCoreTables::invoke(__CLASS__, 'links_callback', Civi::$statics[__CLASS__]['links']);
e501603b 72 }
346aaaba 73 return Civi::$statics[__CLASS__]['links'];
e501603b 74 }
c3fc2621 75
e501603b
TO
76 /**
77 * Returns all the column names of this table
78 *
79 * @return array
80 */
c3fc2621 81 public static function &fields() {
346aaaba 82 if (!isset(Civi::$statics[__CLASS__]['fields'])) {
c3fc2621
CW
83 Civi::$statics[__CLASS__]['fields'] = [
84 'id' => [
e501603b
TO
85 'name' => 'id',
86 'type' => CRM_Utils_Type::T_INT,
c3fc2621 87 'title' => ts('Group Nesting ID'),
e501603b 88 'description' => 'Relationship ID',
c3fc2621 89 'required' => TRUE,
522a26c9 90 'table_name' => 'civicrm_group_nesting',
91 'entity' => 'GroupNesting',
92 'bao' => 'CRM_Contact_BAO_GroupNesting',
6a7e5e5d 93 'localizable' => 0,
c3fc2621
CW
94 ],
95 'child_group_id' => [
e501603b
TO
96 'name' => 'child_group_id',
97 'type' => CRM_Utils_Type::T_INT,
c3fc2621 98 'title' => ts('Child Group'),
e501603b 99 'description' => 'ID of the child group',
c3fc2621 100 'required' => TRUE,
522a26c9 101 'table_name' => 'civicrm_group_nesting',
102 'entity' => 'GroupNesting',
103 'bao' => 'CRM_Contact_BAO_GroupNesting',
6a7e5e5d 104 'localizable' => 0,
e501603b 105 'FKClassName' => 'CRM_Contact_DAO_Group',
c3fc2621
CW
106 ],
107 'parent_group_id' => [
e501603b
TO
108 'name' => 'parent_group_id',
109 'type' => CRM_Utils_Type::T_INT,
c3fc2621 110 'title' => ts('Parent Group'),
e501603b 111 'description' => 'ID of the parent group',
c3fc2621 112 'required' => TRUE,
522a26c9 113 'table_name' => 'civicrm_group_nesting',
114 'entity' => 'GroupNesting',
115 'bao' => 'CRM_Contact_BAO_GroupNesting',
6a7e5e5d 116 'localizable' => 0,
e501603b 117 'FKClassName' => 'CRM_Contact_DAO_Group',
c3fc2621
CW
118 ],
119 ];
346aaaba 120 CRM_Core_DAO_AllCoreTables::invoke(__CLASS__, 'fields_callback', Civi::$statics[__CLASS__]['fields']);
e501603b 121 }
346aaaba 122 return Civi::$statics[__CLASS__]['fields'];
e501603b 123 }
c3fc2621 124
e501603b 125 /**
bd8e0b14 126 * Return a mapping from field-name to the corresponding key (as used in fields()).
e501603b
TO
127 *
128 * @return array
bd8e0b14 129 * Array(string $name => string $uniqueName).
e501603b 130 */
c3fc2621 131 public static function &fieldKeys() {
bd8e0b14
TO
132 if (!isset(Civi::$statics[__CLASS__]['fieldKeys'])) {
133 Civi::$statics[__CLASS__]['fieldKeys'] = array_flip(CRM_Utils_Array::collect('name', self::fields()));
e501603b 134 }
bd8e0b14 135 return Civi::$statics[__CLASS__]['fieldKeys'];
e501603b 136 }
c3fc2621 137
e501603b
TO
138 /**
139 * Returns the names of this table
140 *
141 * @return string
142 */
c3fc2621 143 public static function getTableName() {
e501603b
TO
144 return self::$_tableName;
145 }
c3fc2621 146
e501603b
TO
147 /**
148 * Returns if this table needs to be logged
149 *
c3fc2621 150 * @return bool
e501603b 151 */
c3fc2621 152 public function getLog() {
e501603b
TO
153 return self::$_log;
154 }
c3fc2621 155
e501603b
TO
156 /**
157 * Returns the list of fields that can be imported
158 *
159 * @param bool $prefix
160 *
161 * @return array
162 */
c3fc2621
CW
163 public static function &import($prefix = FALSE) {
164 $r = CRM_Core_DAO_AllCoreTables::getImports(__CLASS__, 'group_nesting', $prefix, []);
60808919 165 return $r;
e501603b 166 }
c3fc2621 167
e501603b
TO
168 /**
169 * Returns the list of fields that can be exported
170 *
171 * @param bool $prefix
172 *
173 * @return array
174 */
c3fc2621
CW
175 public static function &export($prefix = FALSE) {
176 $r = CRM_Core_DAO_AllCoreTables::getExports(__CLASS__, 'group_nesting', $prefix, []);
60808919 177 return $r;
e501603b 178 }
c3fc2621 179
e7a6b91a
AS
180 /**
181 * Returns the list of indices
c3fc2621
CW
182 *
183 * @param bool $localize
184 *
185 * @return array
e7a6b91a
AS
186 */
187 public static function indices($localize = TRUE) {
c3fc2621 188 $indices = [];
e7a6b91a
AS
189 return ($localize && !empty($indices)) ? CRM_Core_DAO_AllCoreTables::multilingualize(__CLASS__, $indices) : $indices;
190 }
c3fc2621 191
e501603b 192}