diff options
author | Brenda Wallace <shiny@cpan.org> | 2010-01-10 14:06:15 +1300 |
---|---|---|
committer | Brenda Wallace <shiny@cpan.org> | 2010-01-10 14:06:15 +1300 |
commit | 26b03240271d061177a258dbae46bc384dbc9d6a (patch) | |
tree | cedb5e37ed018c3482be18fb2428c9161b8f41a7 /plugins/CasAuthentication/CasAuthenticationPlugin.php | |
parent | 42896ac1fbe1b952bb7949c069b2c8c5647c1185 (diff) | |
parent | 40847ea1b5a527af9de88eb02e38922e5704999b (diff) |
Merge commit 'mainline/0.9.x' into 0.9.x
Diffstat (limited to 'plugins/CasAuthentication/CasAuthenticationPlugin.php')
-rw-r--r-- | plugins/CasAuthentication/CasAuthenticationPlugin.php | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/plugins/CasAuthentication/CasAuthenticationPlugin.php b/plugins/CasAuthentication/CasAuthenticationPlugin.php index 818a11f77..483b060ab 100644 --- a/plugins/CasAuthentication/CasAuthenticationPlugin.php +++ b/plugins/CasAuthentication/CasAuthenticationPlugin.php @@ -138,4 +138,15 @@ class CasAuthenticationPlugin extends AuthenticationPlugin $casSettings['port']=$this->port; $casSettings['path']=$this->path; } + + function onPluginVersion(&$versions) + { + $versions[] = array('name' => 'CAS Authentication', + 'version' => STATUSNET_VERSION, + 'author' => 'Craig Andrews', + 'homepage' => 'http://status.net/wiki/Plugin:CasAuthentication', + 'rawdescription' => + _m('The CAS Authentication plugin allows for StatusNet to handle authentication through CAS (Central Authentication Service).')); + return true; + } } |