Subversion Repositories oidplus

Rev

Rev 682 | Rev 1050 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 682 Rev 730
Line 21... Line 21...
21
 
21
 
22
// OIDplusConfig contains settings that are stored in the database.
22
// OIDplusConfig contains settings that are stored in the database.
23
// Not to be confused with OIDplusBaseConfig which is the basic ("static")
23
// Not to be confused with OIDplusBaseConfig which is the basic ("static")
24
// configuration stored in userdata/baseconfig/config.inc.php,
24
// configuration stored in userdata/baseconfig/config.inc.php,
25
// e.g. database access credentials.
25
// e.g. database access credentials.
26
class OIDplusConfig implements OIDplusGetterSetterInterface {
26
class OIDplusConfig extends OIDplusBaseClass implements OIDplusGetterSetterInterface {
27
 
27
 
28
        /*public*/ const PROTECTION_EDITABLE = 0;
28
        /*public*/ const PROTECTION_EDITABLE = 0;
29
        /*public*/ const PROTECTION_READONLY = 1;
29
        /*public*/ const PROTECTION_READONLY = 1;
30
        /*public*/ const PROTECTION_HIDDEN   = 2;
30
        /*public*/ const PROTECTION_HIDDEN   = 2;
31
 
31