20 lines
580 B
PHP
20 lines
580 B
PHP
<?php
|
|
|
|
/**
|
|
* Name: Holiday Theme
|
|
* Author: DakuTree <thedakutree@codeanimu.net>
|
|
* Link: http://www.codeanimu.net
|
|
* License: GPLv2
|
|
* Description: Use an additional stylesheet on certain holidays.
|
|
*/
|
|
class HolidayInfo extends ExtensionInfo
|
|
{
|
|
public const KEY = "holiday";
|
|
|
|
public $key = self::KEY;
|
|
public $name = "Holiday Theme";
|
|
public $url = "http://www.codeanimu.net";
|
|
public $authors = ["DakuTree"=>"thedakutree@codeanimu.net"];
|
|
public $license = self::LICENSE_GPLV2;
|
|
public $description = "Use an additional stylesheet on certain holidays";
|
|
}
|