diff options
author | Siebrand Mazeland <s.mazeland@xs4all.nl> | 2010-09-20 19:38:00 +0200 |
---|---|---|
committer | Siebrand Mazeland <s.mazeland@xs4all.nl> | 2010-09-20 19:38:00 +0200 |
commit | 7f3731e2badc9db38e75e7a145dbccaf533fd59a (patch) | |
tree | 9b663b1d29485919ed4c50ea6937e71f75f51163 | |
parent | a4a39a2cc36df617f5e076f38034d672a1208cd6 (diff) |
Add onPluginVersion()
-rw-r--r-- | plugins/Adsense/AdsensePlugin.php | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/plugins/Adsense/AdsensePlugin.php b/plugins/Adsense/AdsensePlugin.php index c02430a58..3d733e150 100644 --- a/plugins/Adsense/AdsensePlugin.php +++ b/plugins/Adsense/AdsensePlugin.php @@ -198,4 +198,15 @@ class AdsensePlugin extends UAPPlugin } return true; } + + function onPluginVersion(&$versions) + { + $versions[] = array('name' => 'BlankAdPlugin', + 'version' => STATUSNET_VERSION, + 'author' => 'Evan Prodromou', + 'homepage' => 'http://status.net/wiki/Plugin:Adsense', + 'rawdescription' => + _m('Plugin to add Google Adsense to StatusNet sites.')); + return true; + } } |