Add version information to a bunch of plugins

This commit is contained in:
Craig Andrews
2010-01-09 18:58:40 -05:00
parent 954335fa5e
commit c758b1b1d4
18 changed files with 168 additions and 1 deletions

View File

@@ -61,5 +61,16 @@ class AutocompletePlugin extends Plugin
}
}
function onPluginVersion(&$versions)
{
$versions[] = array('name' => 'Autocomplete',
'version' => STATUSNET_VERSION,
'author' => 'Craig Andrews',
'homepage' => 'http://status.net/wiki/Plugin:Autocomplete',
'rawdescription' =>
_m('The autocomplete plugin allows users to autocomplete screen names in @ replies. When an "@" is typed into the notice text area, an autocomplete box is displayed populated with the user\'s friend\' screen names.'));
return true;
}
}
?>