Merge pull request #8916 from cividesk/CRM-19256-4.7
[civicrm-core.git] / CRM / Core / DAO / Navigation.php
CommitLineData
e501603b
TO
1<?php
2/*
3+--------------------------------------------------------------------+
4| CiviCRM version 4.7 |
5+--------------------------------------------------------------------+
0f03f337 6| Copyright CiviCRM LLC (c) 2004-2017 |
e501603b
TO
7+--------------------------------------------------------------------+
8| This file is a part of CiviCRM. |
9| |
10| CiviCRM is free software; you can copy, modify, and distribute it |
11| under the terms of the GNU Affero General Public License |
12| Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
13| |
14| CiviCRM is distributed in the hope that it will be useful, but |
15| WITHOUT ANY WARRANTY; without even the implied warranty of |
16| MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
17| See the GNU Affero General Public License for more details. |
18| |
19| You should have received a copy of the GNU Affero General Public |
20| License and the CiviCRM Licensing Exception along |
21| with this program; if not, contact CiviCRM LLC |
22| at info[AT]civicrm[DOT]org. If you have questions about the |
23| GNU Affero General Public License or the licensing of CiviCRM, |
24| see the CiviCRM license FAQ at http://civicrm.org/licensing |
25+--------------------------------------------------------------------+
26*/
27/**
28 * @package CRM
0f03f337 29 * @copyright CiviCRM LLC (c) 2004-2017
e501603b
TO
30 *
31 * Generated from xml/schema/CRM/Core/Navigation.xml
32 * DO NOT EDIT. Generated by CRM_Core_CodeGen
e2c44ec0 33 * (GenCodeChecksum:54cd16aaee611bffac63ee4fa10787fa)
e501603b
TO
34 */
35require_once 'CRM/Core/DAO.php';
36require_once 'CRM/Utils/Type.php';
f41f0342 37/**
38 * CRM_Core_DAO_Navigation constructor.
39 */
e501603b
TO
40class CRM_Core_DAO_Navigation extends CRM_Core_DAO {
41 /**
f41f0342 42 * Static instance to hold the table name.
e501603b
TO
43 *
44 * @var string
45 */
46 static $_tableName = 'civicrm_navigation';
e501603b 47 /**
f41f0342 48 * Should CiviCRM log any modifications to this table in the civicrm_log table.
e501603b
TO
49 *
50 * @var boolean
51 */
52 static $_log = false;
53 /**
54 *
55 * @var int unsigned
56 */
57 public $id;
58 /**
59 * Which Domain is this navigation item for
60 *
61 * @var int unsigned
62 */
63 public $domain_id;
64 /**
65 * Navigation Title
66 *
67 * @var string
68 */
69 public $label;
70 /**
71 * Internal Name
72 *
73 * @var string
74 */
75 public $name;
76 /**
77 * url in case of custom navigation link
78 *
79 * @var string
80 */
81 public $url;
82 /**
83 * Permission for menu item
84 *
85 * @var string
86 */
87 public $permission;
88 /**
89 * Permission Operator
90 *
91 * @var string
92 */
93 public $permission_operator;
94 /**
95 * Parent navigation item, used for grouping
96 *
97 * @var int unsigned
98 */
99 public $parent_id;
100 /**
101 * Is this navigation item active?
102 *
103 * @var boolean
104 */
105 public $is_active;
106 /**
107 * If separator needs to be added after this menu item
108 *
109 * @var boolean
110 */
111 public $has_separator;
112 /**
113 * Ordering of the navigation items in various blocks.
114 *
115 * @var int
116 */
117 public $weight;
118 /**
f41f0342 119 * Class constructor.
e501603b
TO
120 */
121 function __construct() {
122 $this->__table = 'civicrm_navigation';
123 parent::__construct();
124 }
125 /**
f41f0342 126 * Returns foreign keys and entity references.
e501603b
TO
127 *
128 * @return array
129 * [CRM_Core_Reference_Interface]
130 */
131 static function getReferenceColumns() {
346aaaba
TO
132 if (!isset(Civi::$statics[__CLASS__]['links'])) {
133 Civi::$statics[__CLASS__]['links'] = static ::createReferenceColumns(__CLASS__);
134 Civi::$statics[__CLASS__]['links'][] = new CRM_Core_Reference_Basic(self::getTableName() , 'domain_id', 'civicrm_domain', 'id');
135 Civi::$statics[__CLASS__]['links'][] = new CRM_Core_Reference_Basic(self::getTableName() , 'parent_id', 'civicrm_navigation', 'id');
136 CRM_Core_DAO_AllCoreTables::invoke(__CLASS__, 'links_callback', Civi::$statics[__CLASS__]['links']);
e501603b 137 }
346aaaba 138 return Civi::$statics[__CLASS__]['links'];
e501603b
TO
139 }
140 /**
141 * Returns all the column names of this table
142 *
143 * @return array
144 */
145 static function &fields() {
346aaaba
TO
146 if (!isset(Civi::$statics[__CLASS__]['fields'])) {
147 Civi::$statics[__CLASS__]['fields'] = array(
e501603b
TO
148 'id' => array(
149 'name' => 'id',
150 'type' => CRM_Utils_Type::T_INT,
151 'title' => ts('Navigation ID') ,
152 'required' => true,
153 ) ,
154 'domain_id' => array(
155 'name' => 'domain_id',
156 'type' => CRM_Utils_Type::T_INT,
157 'title' => ts('Navigation Domain') ,
158 'description' => 'Which Domain is this navigation item for',
159 'required' => true,
160 'FKClassName' => 'CRM_Core_DAO_Domain',
161 'pseudoconstant' => array(
162 'table' => 'civicrm_domain',
163 'keyColumn' => 'id',
164 'labelColumn' => 'name',
165 )
166 ) ,
167 'label' => array(
168 'name' => 'label',
169 'type' => CRM_Utils_Type::T_STRING,
170 'title' => ts('Navigation Item Label') ,
171 'description' => 'Navigation Title',
172 'maxlength' => 255,
173 'size' => CRM_Utils_Type::HUGE,
174 ) ,
175 'name' => array(
176 'name' => 'name',
177 'type' => CRM_Utils_Type::T_STRING,
178 'title' => ts('Navigation Item Machine Name') ,
179 'description' => 'Internal Name',
180 'maxlength' => 255,
181 'size' => CRM_Utils_Type::HUGE,
182 ) ,
183 'url' => array(
184 'name' => 'url',
185 'type' => CRM_Utils_Type::T_STRING,
186 'title' => ts('Url') ,
187 'description' => 'url in case of custom navigation link',
188 'maxlength' => 255,
189 'size' => CRM_Utils_Type::HUGE,
190 ) ,
191 'permission' => array(
192 'name' => 'permission',
193 'type' => CRM_Utils_Type::T_STRING,
194 'title' => ts('Required Permission') ,
195 'description' => 'Permission for menu item',
196 'maxlength' => 255,
197 'size' => CRM_Utils_Type::HUGE,
198 ) ,
199 'permission_operator' => array(
200 'name' => 'permission_operator',
201 'type' => CRM_Utils_Type::T_STRING,
202 'title' => ts('Permission Operator') ,
203 'description' => 'Permission Operator',
204 'maxlength' => 3,
205 'size' => CRM_Utils_Type::FOUR,
206 ) ,
207 'parent_id' => array(
208 'name' => 'parent_id',
209 'type' => CRM_Utils_Type::T_INT,
210 'title' => ts('Navigation parent ID') ,
211 'description' => 'Parent navigation item, used for grouping',
212 'FKClassName' => 'CRM_Core_DAO_Navigation',
213 'pseudoconstant' => array(
214 'table' => 'civicrm_navigation',
e2c44ec0 215 'keyColumn' => 'id',
e501603b 216 'labelColumn' => 'label',
e2c44ec0 217 'nameColumn' => 'name',
e501603b
TO
218 )
219 ) ,
220 'is_active' => array(
221 'name' => 'is_active',
222 'type' => CRM_Utils_Type::T_BOOLEAN,
223 'title' => ts('Is Active') ,
224 'description' => 'Is this navigation item active?',
225 ) ,
226 'has_separator' => array(
227 'name' => 'has_separator',
228 'type' => CRM_Utils_Type::T_BOOLEAN,
229 'title' => ts('Use separator') ,
230 'description' => 'If separator needs to be added after this menu item',
231 ) ,
232 'weight' => array(
233 'name' => 'weight',
234 'type' => CRM_Utils_Type::T_INT,
235 'title' => ts('Order') ,
236 'description' => 'Ordering of the navigation items in various blocks.',
237 ) ,
238 );
346aaaba 239 CRM_Core_DAO_AllCoreTables::invoke(__CLASS__, 'fields_callback', Civi::$statics[__CLASS__]['fields']);
e501603b 240 }
346aaaba 241 return Civi::$statics[__CLASS__]['fields'];
e501603b
TO
242 }
243 /**
bd8e0b14 244 * Return a mapping from field-name to the corresponding key (as used in fields()).
e501603b
TO
245 *
246 * @return array
bd8e0b14 247 * Array(string $name => string $uniqueName).
e501603b
TO
248 */
249 static function &fieldKeys() {
bd8e0b14
TO
250 if (!isset(Civi::$statics[__CLASS__]['fieldKeys'])) {
251 Civi::$statics[__CLASS__]['fieldKeys'] = array_flip(CRM_Utils_Array::collect('name', self::fields()));
e501603b 252 }
bd8e0b14 253 return Civi::$statics[__CLASS__]['fieldKeys'];
e501603b
TO
254 }
255 /**
256 * Returns the names of this table
257 *
258 * @return string
259 */
260 static function getTableName() {
261 return self::$_tableName;
262 }
263 /**
264 * Returns if this table needs to be logged
265 *
266 * @return boolean
267 */
268 function getLog() {
269 return self::$_log;
270 }
271 /**
272 * Returns the list of fields that can be imported
273 *
274 * @param bool $prefix
275 *
276 * @return array
277 */
278 static function &import($prefix = false) {
60808919
TO
279 $r = CRM_Core_DAO_AllCoreTables::getImports(__CLASS__, 'navigation', $prefix, array());
280 return $r;
e501603b
TO
281 }
282 /**
283 * Returns the list of fields that can be exported
284 *
285 * @param bool $prefix
286 *
287 * @return array
288 */
289 static function &export($prefix = false) {
60808919
TO
290 $r = CRM_Core_DAO_AllCoreTables::getExports(__CLASS__, 'navigation', $prefix, array());
291 return $r;
e501603b
TO
292 }
293}