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/tips/info.php
2019-08-07 15:40:01 -05:00

24 lines
669 B
PHP

<?php
/**
* Name: Random Tip
* Author: Sein Kraft <mail@seinkraft.info>
* License: GPLv2
* Description: Show a random line of text in the subheader space
* Documentation:
* Formatting is done with HTML
*/
class TipsInfo extends ExtensionInfo
{
public const KEY = "tips";
public $key = self::KEY;
public $name = "Random Tip";
public $authors = ["Sein Kraft"=>"mail@seinkraft.info"];
public $license = "GPLv2";
public $description = "Show a random line of text in the subheader space";
public $documentation = "Formatting is done with HTML";
public $db_support = [DatabaseDriver::MYSQL, DatabaseDriver::SQLITE]; // rand() ?
}