-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathDefRuoli.inc
executable file
·26 lines (23 loc) · 1 KB
/
DefRuoli.inc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?php
// ----------------------------------------------------------------------
// Registro elettronico scuole ospedaliere - tulip
// ----------------------------------------------------------------------
// LICENSE and CREDITS
// This program is free software and it's released under the terms of the
// GNU General Public License(GPL) Version 2
// Link: http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt
// Please READ carefully the Docs/License.txt file for further details
// Please READ the Docs/credits.txt file for complete credits list
// ----------------------------------------------------------------------
// Nome file: DefRuoli.inc
// Autore di questo file: Sophia Danesino
// Puria Nafisi <[email protected]>
// Descrizione: definizione costanti associate ai ruoli
// ----------------------------------------------------------------------
define("ID_ADMIN",1);
define("ID_OPERATORE",2);
define("ID_OSPEDALIERO",3);
define("ID_OSSERVATORE",4);
define("ID_AFFIDATARIO",5);
define("ID_DOMICILIARE",6);
?>