Add onPluginVersion()
This commit is contained in:
parent
3005f26aa2
commit
f975c17329
|
@ -42,7 +42,6 @@ require_once INSTALLDIR.'/plugins/Realtime/RealtimePlugin.php';
|
|||
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
|
||||
* @link http://status.net/
|
||||
*/
|
||||
|
||||
class CometPlugin extends RealtimePlugin
|
||||
{
|
||||
public $server = null;
|
||||
|
@ -104,4 +103,15 @@ class CometPlugin extends RealtimePlugin
|
|||
}
|
||||
return '/' . implode('/', $path);
|
||||
}
|
||||
|
||||
function onPluginVersion(&$versions)
|
||||
{
|
||||
$versions[] = array('name' => 'Comet',
|
||||
'version' => STATUSNET_VERSION,
|
||||
'author' => 'Evan Prodromou',
|
||||
'homepage' => 'http://status.net/wiki/Plugin:Comet',
|
||||
'rawdescription' =>
|
||||
_m('Plugin to do "real time" updates using Comet/Bayeux.'));
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user