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