Merge pull request #17719 from civicrm/5.27
[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:9d8fbfd3582d798a3536300ed7848d85)
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 ],
103 'child_group_id' => [
104 'name' => 'child_group_id',
105 'type' => CRM_Utils_Type::T_INT,
106 'title' => ts('Child Group'),
107 'description' => ts('ID of the child group'),
108 'required' => TRUE,
109 'where' => 'civicrm_group_nesting.child_group_id',
110 'table_name' => 'civicrm_group_nesting',
111 'entity' => 'GroupNesting',
112 'bao' => 'CRM_Contact_BAO_GroupNesting',
113 'localizable' => 0,
114 'FKClassName' => 'CRM_Contact_DAO_Group',
115 ],
116 'parent_group_id' => [
117 'name' => 'parent_group_id',
118 'type' => CRM_Utils_Type::T_INT,
119 'title' => ts('Parent Group'),
120 'description' => ts('ID of the parent group'),
121 'required' => TRUE,
122 'where' => 'civicrm_group_nesting.parent_group_id',
123 'table_name' => 'civicrm_group_nesting',
124 'entity' => 'GroupNesting',
125 'bao' => 'CRM_Contact_BAO_GroupNesting',
126 'localizable' => 0,
127 'FKClassName' => 'CRM_Contact_DAO_Group',
128 ],
129 ];
130 CRM_Core_DAO_AllCoreTables::invoke(__CLASS__, 'fields_callback', Civi::$statics[__CLASS__]['fields']);
131 }
132 return Civi::$statics[__CLASS__]['fields'];
133 }
134
135 /**
136 * Return a mapping from field-name to the corresponding key (as used in fields()).
137 *
138 * @return array
139 * Array(string $name => string $uniqueName).
140 */
141 public static function &fieldKeys() {
142 if (!isset(Civi::$statics[__CLASS__]['fieldKeys'])) {
143 Civi::$statics[__CLASS__]['fieldKeys'] = array_flip(CRM_Utils_Array::collect('name', self::fields()));
144 }
145 return Civi::$statics[__CLASS__]['fieldKeys'];
146 }
147
148 /**
149 * Returns the names of this table
150 *
151 * @return string
152 */
153 public static function getTableName() {
154 return self::$_tableName;
155 }
156
157 /**
158 * Returns if this table needs to be logged
159 *
160 * @return bool
161 */
162 public function getLog() {
163 return self::$_log;
164 }
165
166 /**
167 * Returns the list of fields that can be imported
168 *
169 * @param bool $prefix
170 *
171 * @return array
172 */
173 public static function &import($prefix = FALSE) {
174 $r = CRM_Core_DAO_AllCoreTables::getImports(__CLASS__, 'group_nesting', $prefix, []);
175 return $r;
176 }
177
178 /**
179 * Returns the list of fields that can be exported
180 *
181 * @param bool $prefix
182 *
183 * @return array
184 */
185 public static function &export($prefix = FALSE) {
186 $r = CRM_Core_DAO_AllCoreTables::getExports(__CLASS__, 'group_nesting', $prefix, []);
187 return $r;
188 }
189
190 /**
191 * Returns the list of indices
192 *
193 * @param bool $localize
194 *
195 * @return array
196 */
197 public static function indices($localize = TRUE) {
198 $indices = [];
199 return ($localize && !empty($indices)) ? CRM_Core_DAO_AllCoreTables::multilingualize(__CLASS__, $indices) : $indices;
200 }
201
202 }