Subversion Repositories oidplus

Rev

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

Rev 295 Rev 305
Line 19... Line 19...
19
 
19
 
20
abstract class OIDplusDatabasePlugin extends OIDplusPlugin {
20
abstract class OIDplusDatabasePlugin extends OIDplusPlugin {
21
 
21
 
22
        public abstract static function id(): string; // this is the name that is set to the configuration value OIDplus::baseConfig()->getValue('DATABASE_PLUGIN') to identify the database plugin
22
        public abstract static function id(): string; // this is the name that is set to the configuration value OIDplus::baseConfig()->getValue('DATABASE_PLUGIN') to identify the database plugin
23
 
23
 
24
        public abstract function newConnection(): OIDplusDatabaseConnection;
24
        public abstract static function newConnection(): OIDplusDatabaseConnection;
-
 
25
 
-
 
26
        public abstract static function setupHTML(): string;
25
 
27
 
26
}
28
}