This repository has been archived on 2024-09-05. You can view files and clone it, but cannot push or open issues or pull requests.
shimmie2/ext/livefeed/info.php
2019-08-07 15:40:01 -05:00

22 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";
}