Initial commit.

This commit is contained in:
2026-03-10 21:25:26 +08:00
commit 78739bf725
3089 changed files with 472990 additions and 0 deletions

View 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");
}
?>