diff options
author | Craig Andrews <candrews@integralblue.com> | 2010-01-09 18:58:40 -0500 |
---|---|---|
committer | Craig Andrews <candrews@integralblue.com> | 2010-01-09 19:04:53 -0500 |
commit | c758b1b1d40d5534e0fc63818bc7d9cf8350de96 (patch) | |
tree | e28a03c80d0d1be029f9a6563fb36be476953e4e /plugins/ReverseUsernameAuthentication/ReverseUsernameAuthenticationPlugin.php | |
parent | 954335fa5e18b003e20cd43e71fb690181095101 (diff) |
Add version information to a bunch of plugins
Diffstat (limited to 'plugins/ReverseUsernameAuthentication/ReverseUsernameAuthenticationPlugin.php')
-rw-r--r-- | plugins/ReverseUsernameAuthentication/ReverseUsernameAuthenticationPlugin.php | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/plugins/ReverseUsernameAuthentication/ReverseUsernameAuthenticationPlugin.php b/plugins/ReverseUsernameAuthentication/ReverseUsernameAuthenticationPlugin.php index d157ea067..d9d2137f8 100644 --- a/plugins/ReverseUsernameAuthentication/ReverseUsernameAuthenticationPlugin.php +++ b/plugins/ReverseUsernameAuthentication/ReverseUsernameAuthenticationPlugin.php @@ -53,4 +53,15 @@ class ReverseUsernameAuthenticationPlugin extends AuthenticationPlugin $registration_data['nickname'] = $username ; return User::register($registration_data); } + + function onPluginVersion(&$versions) + { + $versions[] = array('name' => 'Reverse Username Authentication', + 'version' => STATUSNET_VERSION, + 'author' => 'Craig Andrews', + 'homepage' => 'http://status.net/wiki/Plugin:ReverseUsernameAuthentication', + 'rawdescription' => + _m('The Reverse Username Authentication plugin allows for StatusNet to handle authentication by checking if the provided password is the same as the reverse of the username.')); + return true; + } } |