Subversion Repositories oidplus

Compare Revisions

Regard whitespace Rev 291 → Rev 292

/trunk/includes/classes/OIDplusPlugin.class.php
19,6 → 19,16
 
abstract class OIDplusPlugin {
 
public function implementsFeature($id) {
 
// Use this function to query the plugin if it supports some specific interface
// Usually, you would use PHP Interfaces. However, the problem with PHP interfaces
// is, that there will be a fatal error if the interface can't be found (e.g. because
// the OIDplus plugin is not installed). So we need an "optional" interface.
 
return false;
}
 
public function init($html=true) {}
 
}