2020-01-26 13:19:35 +00:00
|
|
|
<?php declare(strict_types=1);
|
2019-08-07 14:53:59 -05:00
|
|
|
|
2020-02-23 18:46:27 +00:00
|
|
|
class FourOhFourInfo extends ExtensionInfo
|
2019-08-07 14:53:59 -05:00
|
|
|
{
|
2020-02-23 18:46:27 +00:00
|
|
|
public const KEY = "four_oh_four";
|
2019-08-07 14:53:59 -05:00
|
|
|
|
|
|
|
public $key = self::KEY;
|
|
|
|
public $name = "404 Detector";
|
|
|
|
public $url = self::SHIMMIE_URL;
|
|
|
|
public $authors = self::SHISH_AUTHOR;
|
|
|
|
public $license = self::LICENSE_GPLV2;
|
|
|
|
public $visibility = self::VISIBLE_ADMIN;
|
|
|
|
public $description = "If no other extension puts anything onto the page, show 404";
|
|
|
|
public $core = true;
|
|
|
|
}
|