Merge pull request #18149 from seamuslee001/dev_core_1952
[civicrm-core.git] / CRM / Contact / DAO / GroupNesting.php
1 <?php
2
3 /**
4 * @package CRM
5 * @copyright CiviCRM LLC https://civicrm.org/licensing
6 *
7 * Generated from xml/schema/CRM/Contact/GroupNesting.xml
8 * DO NOT EDIT. Generated by CRM_Core_CodeGen
9 * (GenCodeChecksum:7e5dfd763c2f4b39ff7f3ea962269bae)
10 */
11
12 /**
13 * Database access object for the GroupNesting entity.
14 */
15 class CRM_Contact_DAO_GroupNesting extends CRM_Core_DAO {
16
17 /**
18 * Static instance to hold the table name.
19 *
20 * @var string
21 */
22 public static $_tableName = 'civicrm_group_nesting';
23
24 /**
25 * Should CiviCRM log any modifications to this table in the civicrm_log table.
26 *
27 * @var bool
28 */
29 public static $_log = TRUE;
30
31 /**
32 * Relationship ID
33 *
34 * @var int
35 */
36 public $id;
37
38 /**
39 * ID of the child group
40 *
41 * @var int
42 */
43 public $child_group_id;
44
45 /**
46 * ID of the parent group
47 *
48 * @var int
49 */
50 public $parent_group_id;
51
52 /**
53 * Class constructor.
54 */
55 public function __construct() {
56 $this->__table = 'civicrm_group_nesting';
57 parent::__construct();
58 }
59
60 /**
61 * Returns localized title of this entity.
62 */
63 public static function getEntityTitle() {
64 return ts('Group Nestings');
65 }
66
67 /**
68 * Returns foreign keys and entity references.
69 *
70 * @return array
71 * [CRM_Core_Reference_Interface]
72 */
73 public static function getReferenceColumns() {
74 if (!isset(Civi::$statics[__CLASS__]['links'])) {
75 Civi::$statics[__CLASS__]['links'] = static::createReferenceColumns(__CLASS__);
76 Civi::$statics[__CLASS__]['links'][] = new CRM_Core_Reference_Basic(self::getTableName(), 'child_group_id', 'civicrm_group', 'id');
77 Civi::$statics[__CLASS__]['links'][] = new CRM_Core_Reference_Basic(self::getTableName(), 'parent_group_id', 'civicrm_group', 'id');
78 CRM_Core_DAO_AllCoreTables::invoke(__CLASS__, 'links_callback', Civi::$statics[__CLASS__]['links']);
79 }
80 return Civi::$statics[__CLASS__]['links'];
81 }
82
83 /**
84 * Returns all the column names of this table
85 *
86 * @return array
87 */
88 public static function &fields() {
89 if (!isset(Civi::$statics[__CLASS__]['fields'])) {
90 Civi::$statics[__CLASS__]['fields'] = [
91 'id' => [
92 'name' => 'id',
93 'type' => CRM_Utils_Type::T_INT,
94 'title' => ts('Group Nesting ID'),
95 'description' => ts('Relationship ID'),
96 'required' => TRUE,
97 'where' => 'civicrm_group_nesting.id',
98 'table_name' => 'civicrm_group_nesting',
99 'entity' => 'GroupNesting',
100 'bao' => 'CRM_Contact_BAO_GroupNesting',
101 'localizable' => 0,
102 'add' => '2.0',
103 ],
104 'child_group_id' => [
105 'name' => 'child_group_id',
106 'type' => CRM_Utils_Type::T_INT,
107 'title' => ts('Child Group'),
108 'description' => ts('ID of the child group'),
109 'required' => TRUE,
110 'where' => 'civicrm_group_nesting.child_group_id',
111 'table_name' => 'civicrm_group_nesting',
112 'entity' => 'GroupNesting',
113 'bao' => 'CRM_Contact_BAO_GroupNesting',
114 'localizable' => 0,
115 'FKClassName' => 'CRM_Contact_DAO_Group',
116 'add' => '2.0',
117 ],
118 'parent_group_id' => [
119 'name' => 'parent_group_id',
120 'type' => CRM_Utils_Type::T_INT,
121 'title' => ts('Parent Group'),
122 'description' => ts('ID of the parent group'),
123 'required' => TRUE,
124 'where' => 'civicrm_group_nesting.parent_group_id',
125 'table_name' => 'civicrm_group_nesting',
126 'entity' => 'GroupNesting',
127 'bao' => 'CRM_Contact_BAO_GroupNesting',
128 'localizable' => 0,
129 'FKClassName' => 'CRM_Contact_DAO_Group',
130 'add' => '2.0',
131 ],
132 ];
133 CRM_Core_DAO_AllCoreTables::invoke(__CLASS__, 'fields_callback', Civi::$statics[__CLASS__]['fields']);
134 }
135 return Civi::$statics[__CLASS__]['fields'];
136 }
137
138 /**
139 * Return a mapping from field-name to the corresponding key (as used in fields()).
140 *
141 * @return array
142 * Array(string $name => string $uniqueName).
143 */
144 public static function &fieldKeys() {
145 if (!isset(Civi::$statics[__CLASS__]['fieldKeys'])) {
146 Civi::$statics[__CLASS__]['fieldKeys'] = array_flip(CRM_Utils_Array::collect('name', self::fields()));
147 }
148 return Civi::$statics[__CLASS__]['fieldKeys'];
149 }
150
151 /**
152 * Returns the names of this table
153 *
154 * @return string
155 */
156 public static function getTableName() {
157 return self::$_tableName;
158 }
159
160 /**
161 * Returns if this table needs to be logged
162 *
163 * @return bool
164 */
165 public function getLog() {
166 return self::$_log;
167 }
168
169 /**
170 * Returns the list of fields that can be imported
171 *
172 * @param bool $prefix
173 *
174 * @return array
175 */
176 public static function &import($prefix = FALSE) {
177 $r = CRM_Core_DAO_AllCoreTables::getImports(__CLASS__, 'group_nesting', $prefix, []);
178 return $r;
179 }
180
181 /**
182 * Returns the list of fields that can be exported
183 *
184 * @param bool $prefix
185 *
186 * @return array
187 */
188 public static function &export($prefix = FALSE) {
189 $r = CRM_Core_DAO_AllCoreTables::getExports(__CLASS__, 'group_nesting', $prefix, []);
190 return $r;
191 }
192
193 /**
194 * Returns the list of indices
195 *
196 * @param bool $localize
197 *
198 * @return array
199 */
200 public static function indices($localize = TRUE) {
201 $indices = [];
202 return ($localize && !empty($indices)) ? CRM_Core_DAO_AllCoreTables::multilingualize(__CLASS__, $indices) : $indices;
203 }
204
205 }