Initial commit.
This commit is contained in:
22
lib/php/monica/usrconst.inc.php
Normal file
22
lib/php/monica/usrconst.inc.php
Normal file
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
// File name: usrconst.inc.php
|
||||
// Description: PHP user constants
|
||||
// Date: 2006-07-07
|
||||
// Author: imacat <imacat@pristine.com.tw>
|
||||
// Copyright: Copyright (C) 2006-2007 Pristine Communications
|
||||
|
||||
// Settings
|
||||
if (!defined("SU_GROUP")) {
|
||||
define("SU_GROUP", "root");
|
||||
}
|
||||
if (!defined("ADMIN_GROUP")) {
|
||||
define("ADMIN_GROUP", "admin");
|
||||
}
|
||||
if (!defined("ALLUSERS_GROUP")) {
|
||||
define("ALLUSERS_GROUP", "users");
|
||||
}
|
||||
if (!defined("ANONYMOUS_USER")) {
|
||||
define("ANONYMOUS_USER", "anonymous");
|
||||
}
|
||||
|
||||
?>
|
||||
Reference in New Issue
Block a user