23 lines
556 B
PHP
23 lines
556 B
PHP
|
<?php
|
||
|
|
||
|
/*
|
||
|
* Name: Live Feed
|
||
|
* Author: Shish <webmaster@shishnet.org>
|
||
|
* License: GPLv2
|
||
|
* Visibility: admin
|
||
|
* Description: Logs user-safe (no IPs) data to a UDP socket, eg IRCCat
|
||
|
* Documentation:
|
||
|
*/
|
||
|
|
||
|
class LiveFeedInfo extends ExtensionInfo
|
||
|
{
|
||
|
public const KEY = "livefeed";
|
||
|
|
||
|
public $key = self::KEY;
|
||
|
public $name = "Live Feed";
|
||
|
public $authors = self::SHISH_AUTHOR;
|
||
|
public $license = self::LICENSE_GPLV2;
|
||
|
public $visibility = self::VISIBLE_ADMIN;
|
||
|
public $description = "Logs user-safe (no IPs) data to a UDP socket, eg IRCCat";
|
||
|
}
|