diff options
author | Evan Prodromou <evan@controlyourself.ca> | 2009-08-04 07:40:41 -0400 |
---|---|---|
committer | Evan Prodromou <evan@controlyourself.ca> | 2009-08-04 13:01:23 -0400 |
commit | f704a7029ee3a329608b288e61bd0c91f3efaf4e (patch) | |
tree | e9f7a6dcce940ea3f3adba68c26309bfe180d230 | |
parent | 3245357749d30f655ce10e8f71737680a61f59db (diff) |
OpenIDPlugin autoloads class files
-rw-r--r-- | plugins/OpenID/OpenIDPlugin.php | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/plugins/OpenID/OpenIDPlugin.php b/plugins/OpenID/OpenIDPlugin.php index f76fe1e3c..5d600159b 100644 --- a/plugins/OpenID/OpenIDPlugin.php +++ b/plugins/OpenID/OpenIDPlugin.php @@ -99,4 +99,24 @@ class OpenIDPlugin extends Plugin return true; } + + function onAutoload($cls) + { + switch ($cls) + { + case 'OpenidloginAction': + case 'FinishopenidloginAction': + case 'FinishaddopenidAction': + case 'XrdsAction': + case 'PublicxrdsAction': + case 'OpenidsettingsAction': + require_once(INSTALLDIR.'/plugins/OpenID/' . strtolower(mb_substr($cls, 0, -6)) . '.php'); + return false; + case 'User_openid': + require_once(INSTALLDIR.'/plugins/OpenID/User_openid.php'); + return false; + default: + return true; + } + } }
\ No newline at end of file |