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

15 lines
460 B
PHP
Raw Normal View History

<?php
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() ?
}