Deleter fix for procedure orders.
[openemr.git] / acl_setup.php
blob3a896ec20974189fb2e7b10e298cdf18c2c0cc53
1 <?php
2 // Copyright (C) 2005-2006 Rod Roark <rod@sunsetsystems.com>
3 //
4 // This program is free software; you can redistribute it and/or
5 // modify it under the terms of the GNU General Public License
6 // as published by the Free Software Foundation; either version 2
7 // of the License, or (at your option) any later version.
8 //
9 // This program is run by the OpenEMR setup.php script to install phpGACL
10 // and creates the Access Control Objects and their sections.
11 // See openemr/library/acl.inc file for the list of
12 // currently supported Access Control Objects(ACO), which this
13 // script will install. This script also creates several
14 // ARO groups, an "admin" ARO, and some reasonable ACL entries for
15 // the groups.
16 // ARO groups include:
17 // Administrators
18 // Physicians (Doctors)
19 // Clinicians (Nurses, Physician Assistants, etc.)
20 // Front Office (Receptionist)
21 // Accounting
23 // Upgrade Howto
24 // When upgrading to a new version of OpenEMR, run the acl_upgrade.php
25 // script to update the phpGACL access controls. This is required to
26 // ensure the database includes all the required Access Control
27 // Objects(ACO).
30 // On 06/2009, added pertinent comments below each entry to allow capture
31 // of these terms by the translation engine.
33 require_once(dirname(__FILE__).'/library/acl.inc');
35 if (! $phpgacl_location) die("You must first set up library/acl.inc to use phpGACL!");
37 require_once("$phpgacl_location/gacl_api.class.php");
39 $gacl = new gacl_api();
41 // Create the ACO sections. Every ACO must have a section.
43 if ($gacl->add_object_section('Accounting', 'acct', 10, 0, 'ACO') === FALSE) {
44 echo "Unable to create the access controls for OpenEMR. You have likely already run this script (acl_setup.php) successfully.<br>Other possible problems include php-GACL configuration file errors (gacl.ini.php or gacl.class.php).<br>";
45 return;
47 // xl('Accounting')
48 $gacl->add_object_section('Administration', 'admin' , 10, 0, 'ACO');
49 // xl('Administration')
50 $gacl->add_object_section('Encounters' , 'encounters' , 10, 0, 'ACO');
51 // xl('Encounters')
52 $gacl->add_object_section('Lists' , 'lists' , 10, 0, 'ACO');
53 // xl('Lists')
54 $gacl->add_object_section('Patients' , 'patients' , 10, 0, 'ACO');
55 // xl('Patients')
56 $gacl->add_object_section('Squads' , 'squads' , 10, 0, 'ACO');
57 // xl('Squads')
58 $gacl->add_object_section('Sensitivities' , 'sensitivities', 10, 0, 'ACO');
59 // xl('Sensitivities')
60 $gacl->add_object_section('Placeholder' , 'placeholder' , 10, 0, 'ACO');
61 // xl('Placeholder')
62 $gacl->add_object_section('Nation Notes' , 'nationnotes' , 10, 0, 'ACO');
63 // xl('Nation Notes')
64 $gacl->add_object_section('Patient Portal','patientportal' , 10, 0, 'ACO');
65 // xl('Patient Portal')
66 // Create Accounting ACOs.
68 $gacl->add_object('acct', 'Billing (write optional)' , 'bill' , 10, 0, 'ACO');
69 // xl('Billing (write optional)')
70 $gacl->add_object('acct', 'Price Discounting' , 'disc' , 10, 0, 'ACO');
71 // xl('Price Discounting')
72 $gacl->add_object('acct', 'EOB Data Entry' , 'eob' , 10, 0, 'ACO');
73 // xl('EOB Data Entry')
74 $gacl->add_object('acct', 'Financial Reporting - my encounters', 'rep' , 10, 0, 'ACO');
75 // xl('Financial Reporting - my encounters')
76 $gacl->add_object('acct', 'Financial Reporting - anything' , 'rep_a', 10, 0, 'ACO');
77 // xl('Financial Reporting - anything')
79 // Create Administration ACOs.
81 $gacl->add_object('admin', 'Superuser' , 'super' , 10, 0, 'ACO');
82 // xl('Superuser')
83 $gacl->add_object('admin', 'Calendar Settings' , 'calendar' , 10, 0, 'ACO');
84 // xl('Calendar Settings')
85 $gacl->add_object('admin', 'Database Reporting' , 'database' , 10, 0, 'ACO');
86 // xl('Database Reporting')
87 $gacl->add_object('admin', 'Forms Administration' , 'forms' , 10, 0, 'ACO');
88 // xl('Forms Administration')
89 $gacl->add_object('admin', 'Practice Settings' , 'practice' , 10, 0, 'ACO');
90 // xl('Practice Settings')
91 $gacl->add_object('admin', 'Superbill Codes Administration' , 'superbill', 10, 0, 'ACO');
92 // xl('Superbill Codes Administration')
93 $gacl->add_object('admin', 'Users/Groups/Logs Administration', 'users' , 10, 0, 'ACO');
94 // xl('Users/Groups/Logs Administration')
95 $gacl->add_object('admin', 'Batch Communication Tool' , 'batchcom' , 10, 0, 'ACO');
96 // xl('Batch Communication Tool')
97 $gacl->add_object('admin', 'Language Interface Tool' , 'language' , 10, 0, 'ACO');
98 // xl('Language Interface Tool')
99 $gacl->add_object('admin', 'Pharmacy Dispensary' , 'drugs' , 10, 0, 'ACO');
100 // xl('Pharmacy Dispensary')
101 $gacl->add_object('admin', 'ACL Administration' , 'acl' , 10, 0, 'ACO');
102 // xl('ACL Administration')
104 // Create ACOs for encounters.
106 $gacl->add_object('encounters', 'Authorize - my encounters' , 'auth' , 10, 0, 'ACO');
107 // xl('Authorize - my encounters')
108 $gacl->add_object('encounters', 'Authorize - any encounters' , 'auth_a' , 10, 0, 'ACO');
109 // xl('Authorize - any encounters')
110 $gacl->add_object('encounters', 'Coding - my encounters (write,wsome optional)' , 'coding' , 10, 0, 'ACO');
111 // xl('Coding - my encounters (write,wsome optional)')
112 $gacl->add_object('encounters', 'Coding - any encounters (write,wsome optional)' , 'coding_a', 10, 0, 'ACO');
113 // xl('Coding - any encounters (write,wsome optional)')
114 $gacl->add_object('encounters', 'Notes - my encounters (write,addonly optional)' , 'notes' , 10, 0, 'ACO');
115 // xl('Notes - my encounters (write,addonly optional)')
116 $gacl->add_object('encounters', 'Notes - any encounters (write,addonly optional)' , 'notes_a' , 10, 0, 'ACO');
117 // xl('Notes - any encounters (write,addonly optional)')
118 $gacl->add_object('encounters', 'Fix encounter dates - any encounters' , 'date_a' , 10, 0, 'ACO');
119 // xl('Fix encounter dates - any encounters')
120 $gacl->add_object('encounters', 'Less-private information (write,addonly optional)', 'relaxed' , 10, 0, 'ACO');
121 // xl('Less-private information (write,addonly optional)')
123 // Create ACOs for lists.
125 $gacl->add_object('lists', 'Default List (write,addonly optional)' , 'default' , 10, 0, 'ACO');
126 // xl('Default List (write,addonly optional)')
127 $gacl->add_object('lists', 'State List (write,addonly optional)' , 'state' , 10, 0, 'ACO');
128 // xl('State List (write,addonly optional)')
129 $gacl->add_object('lists', 'Country List (write,addonly optional)' , 'country' , 10, 0, 'ACO');
130 // xl('Country List (write,addonly optional)')
131 $gacl->add_object('lists', 'Language List (write,addonly optional)' , 'language' , 10, 0, 'ACO');
132 // xl('Language List (write,addonly optional)')
133 $gacl->add_object('lists', 'Ethnicity-Race List (write,addonly optional)' , 'ethrace' , 10, 0, 'ACO');
134 // xl('Ethnicity-Race List (write,addonly optional)')
136 // Create ACOs for patientportal.
138 $gacl->add_object('patientportal', 'Patient Portal' , 'portal' , 10, 0, 'ACO');
139 // xl('Patient Portal')
141 // Create ACOs for patients.
143 $gacl->add_object('patients', 'Appointments (write,wsome optional)' , 'appt' , 10, 0, 'ACO');
144 // xl('Appointments (write,wsome optional)')
145 $gacl->add_object('patients', 'Demographics (write,addonly optional)' , 'demo' , 10, 0, 'ACO');
146 // xl('Demographics (write,addonly optional)')
147 $gacl->add_object('patients', 'Medical/History (write,addonly optional)' , 'med' , 10, 0, 'ACO');
148 // xl('Medical/History (write,addonly optional)')
149 $gacl->add_object('patients', 'Transactions (write optional)' , 'trans', 10, 0, 'ACO');
150 // xl('Transactions (write optional)')
151 $gacl->add_object('patients', 'Documents (write,addonly optional)' , 'docs' , 10, 0, 'ACO');
152 // xl('Documents (write,addonly optional)')
153 $gacl->add_object('patients', 'Patient Notes (write,addonly optional)' , 'notes', 10, 0, 'ACO');
154 // xl('Patient Notes (write,addonly optional)')
155 $gacl->add_object('patients', 'Sign Lab Results (write,addonly optional)', 'sign' , 10, 0, 'ACO');
156 // xl('Sign Lab Results (write,addonly optional)')
158 // Create ACOs for sensitivities.
160 $gacl->add_object('sensitivities', 'Normal', 'normal', 10, 0, 'ACO');
161 // xl('Normal')
162 $gacl->add_object('sensitivities', 'High' , 'high' , 20, 0, 'ACO');
163 // xl('High')
165 // Create ACO for placeholder.
167 $gacl->add_object('placeholder', 'Placeholder (Maintains empty ACLs)', 'filler', 10, 0, 'ACO');
168 // xl('Placeholder (Maintains empty ACLs)')
170 // Create ACO for nationnotes.
172 $gacl->add_object('nationnotes', 'Nation Notes Configure', 'nn_configure', 10, 0, 'ACO');
173 // xl('Nation Notes Configure')
175 // Create ARO groups.
177 $users = $gacl->add_group('users', 'OpenEMR Users' , 0 , 'ARO');
178 // xl('OpenEMR Users')
179 $admin = $gacl->add_group('admin', 'Administrators', $users, 'ARO');
180 // xl('Administrators')
181 $clin = $gacl->add_group('clin' , 'Clinicians' , $users, 'ARO');
182 // xl('Clinicians')
183 $doc = $gacl->add_group('doc' , 'Physicians' , $users, 'ARO');
184 // xl('Physicians')
185 $front = $gacl->add_group('front', 'Front Office' , $users, 'ARO');
186 // xl('Front Office')
187 $back = $gacl->add_group('back' , 'Accounting' , $users, 'ARO');
188 // xl('Accounting')
189 $breakglass = $gacl->add_group('breakglass' , 'Emergency Login' , $users, 'ARO');
190 // xl('Emergency Login')
193 // Create a Users section for the AROs (humans).
195 $gacl->add_object_section('Users', 'users', 10, 0, 'ARO');
196 // xl('Users')
198 // Create the Administrator in the above-created "users" section
199 // and add him/her to the above-created "admin" group.
200 // If this script is being used by OpenEMR's setup, then will
201 // incorporate the installation values. Otherwise will
202 // hardcode the 'admin' user.
203 if ( isset($this->iuser) ) {
204 $gacl->add_object('users', $this->iuname, $this->iuser, 10, 0, 'ARO');
205 $gacl->add_group_object($admin, 'users', $this->iuser, 'ARO');
207 else {
208 $gacl->add_object('users', 'Administrator', 'admin' ,10, 0, 'ARO');
209 $gacl->add_group_object($admin, 'users', 'admin', 'ARO');
212 // Declare return terms for language translations
213 // xl('write') xl('wsome') xl('addonly') xl('view')
215 // Set permissions for administrators.
217 $gacl->add_acl(
218 array(
219 'acct'=>array('bill', 'disc', 'eob', 'rep', 'rep_a'),
220 'admin'=>array('calendar', 'database', 'forms', 'practice', 'superbill', 'users', 'batchcom', 'language', 'super', 'drugs', 'acl'),
221 'encounters'=>array('auth_a', 'coding_a', 'notes_a', 'date_a'),
222 'lists'=>array('default','state','country','language','ethrace'),
223 'patients'=>array('appt', 'demo', 'med', 'trans', 'docs', 'notes'),
224 'sensitivities'=>array('normal', 'high'),
225 'nationnotes'=>array('nn_configure'),
226 'patientportal'=>array('portal')
228 NULL, array($admin), NULL, NULL,
229 1, 1, 'write', 'Administrators can do anything'
231 // xl('Administrators can do anything')
233 // Set permissions for physicians.
235 $gacl->add_acl(
236 array(
237 'placeholder'=>array('filler')
239 NULL, array($doc), NULL, NULL,
240 1, 1, 'view', 'Things that physicians can only read'
242 // xl('Things that physicians can only read')
243 $gacl->add_acl(
244 array(
245 'placeholder'=>array('filler')
247 NULL, array($doc), NULL, NULL,
248 1, 1, 'addonly', 'Things that physicians can read and enter but not modify'
250 // xl('Things that physicians can read and enter but not modify')
251 $gacl->add_acl(
252 array(
253 'placeholder'=>array('filler')
255 NULL, array($doc), NULL, NULL,
256 1, 1, 'wsome', 'Things that physicians can read and partly modify'
258 // xl('Things that physicians can read and partly modify')
259 $gacl->add_acl(
260 array(
261 'acct'=>array('disc', 'rep'),
262 'admin'=>array('drugs'),
263 'encounters'=>array('auth_a', 'coding_a', 'notes_a', 'date_a'),
264 'patients'=>array('appt', 'demo', 'med', 'trans', 'docs', 'notes', 'sign'),
265 'sensitivities'=>array('normal', 'high')
267 NULL, array($doc), NULL, NULL,
268 1, 1, 'write', 'Things that physicians can read and modify'
270 // xl('Things that physicians can read and modify')
272 // Set permissions for clinicians.
274 $gacl->add_acl(
275 array(
276 'placeholder'=>array('filler')
278 NULL, array($clin), NULL, NULL,
279 1, 1, 'view', 'Things that clinicians can only read'
281 // xl('Things that clinicians can only read')
282 $gacl->add_acl(
283 array(
284 'encounters'=>array('notes', 'relaxed'),
285 'patients'=>array('demo', 'med', 'docs', 'notes'),
286 'sensitivities'=>array('normal')
288 NULL, array($clin), NULL, NULL,
289 1, 1, 'addonly', 'Things that clinicians can read and enter but not modify'
291 // xl('Things that clinicians can read and enter but not modify')
293 $gacl->add_acl(
294 array(
295 'placeholder'=>array('filler')
297 NULL, array($clin), NULL, NULL,
298 1, 1, 'wsome', 'Things that clinicians can read and partly modify'
300 // xl('Things that clinicians can read and partly modify')
301 $gacl->add_acl(
302 array(
303 'admin'=>array('drugs'),
304 'encounters'=>array('coding'),
305 'patients'=>array('appt')
307 NULL, array($clin), NULL, NULL,
308 1, 1, 'write', 'Things that clinicians can read and modify'
310 // xl('Things that clinicians can read and modify')
312 // Set permissions for front office staff.
314 $gacl->add_acl(
315 array(
316 'placeholder'=>array('filler')
318 NULL, array($front), NULL, NULL,
319 1, 1, 'view', 'Things that front office can only read'
321 // xl('Things that front office can only read')
322 $gacl->add_acl(
323 array(
324 'placeholder'=>array('filler')
326 NULL, array($front), NULL, NULL,
327 1, 1, 'addonly', 'Things that front office can read and enter but not modify'
329 // xl('Things that front office can read and enter but not modify')
330 $gacl->add_acl(
331 array(
332 'placeholder'=>array('filler')
334 NULL, array($front), NULL, NULL,
335 1, 1, 'wsome', 'Things that front office can read and partly modify'
337 // xl('Things that front office can read and partly modify')
338 $gacl->add_acl(
339 array(
340 'patients'=>array('appt', 'demo', 'trans', 'notes')
342 NULL, array($front), NULL, NULL,
343 1, 1, 'write', 'Things that front office can read and modify'
345 // xl('Things that front office can read and modify')
347 // Set permissions for back office staff.
349 $gacl->add_acl(
350 array(
351 'placeholder'=>array('filler')
353 NULL, array($back), NULL, NULL,
354 1, 1, 'view', 'Things that back office can only read'
356 // xl('Things that back office can only read')
357 $gacl->add_acl(
358 array(
359 'placeholder'=>array('filler')
361 NULL, array($back), NULL, NULL,
362 1, 1, 'addonly', 'Things that back office can read and enter but not modify'
364 // xl('Things that back office can read and enter but not modify')
365 $gacl->add_acl(
366 array(
367 'placeholder'=>array('filler')
369 NULL, array($back), NULL, NULL,
370 1, 1, 'wsome', 'Things that back office can read and partly modify'
372 // xl('Things that back office can read and partly modify')
373 $gacl->add_acl(
374 array(
375 'acct'=>array('bill', 'disc', 'eob', 'rep', 'rep_a'),
376 'admin'=>array('practice', 'superbill'),
377 'encounters'=>array('auth_a', 'coding_a', 'date_a'),
378 'patients'=>array('appt', 'demo')
380 NULL, array($back), NULL, NULL,
381 1, 1, 'write', 'Things that back office can read and modify'
383 // xl('Things that back office can read and modify')
385 // Set permissions for Emergency Login.
387 $gacl->add_acl(
388 array(
389 'acct'=>array('bill', 'disc', 'eob', 'rep', 'rep_a'),
390 'admin'=>array('calendar', 'database', 'forms', 'practice', 'superbill', 'users', 'batchcom', 'language', 'super', 'drugs', 'acl'),
391 'encounters'=>array('auth_a', 'coding_a', 'notes_a', 'date_a'),
392 'lists'=>array('default','state','country','language','ethrace'),
393 'patients'=>array('appt', 'demo', 'med', 'trans', 'docs', 'notes'),
394 'sensitivities'=>array('normal', 'high'),
395 'nationnotes'=>array('nn_configure'),
396 'patientportal'=>array('portal')
398 NULL, array($breakglass), NULL, NULL,
399 1, 1, 'write', 'Emergency Login user can do anything'
401 // xl('Emergency Login user can do anything')
404 <html>
405 <head>
406 <title>OpenEMR ACL Setup</title>
407 <link rel=STYLESHEET href="interface/themes/style_blue.css">
408 </head>
409 <body>
410 <b>OpenEMR ACL Setup</b>
411 <br>
412 All done configuring and installing access controls (php-GACL)!
413 </body>
414 </html>