2019-08-01 11:20:09 -05:00
|
|
|
<?php
|
|
|
|
|
|
|
|
class TipsInfo extends ExtensionInfo
|
|
|
|
{
|
2019-08-07 14:53:59 -05:00
|
|
|
public const KEY = "tips";
|
|
|
|
|
|
|
|
public $key = self::KEY;
|
2019-08-01 11:20:09 -05:00
|
|
|
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";
|
2019-08-07 14:53:59 -05:00
|
|
|
public $db_support = [DatabaseDriver::MYSQL, DatabaseDriver::SQLITE]; // rand() ?
|
|
|
|
}
|