2020-01-26 13:19:35 +00:00
|
|
|
<?php declare(strict_types=1);
|
2019-08-07 14:53:59 -05:00
|
|
|
|
|
|
|
class ImageBanInfo extends ExtensionInfo
|
|
|
|
{
|
|
|
|
public const KEY = "image_hash_ban";
|
|
|
|
|
2021-03-14 23:43:50 +00:00
|
|
|
public string $key = self::KEY;
|
|
|
|
public string $name = "Post Hash Ban";
|
|
|
|
public string $url = "http://atravelinggeek.com/";
|
|
|
|
public array $authors = ["ATravelingGeek"=>"atg@atravelinggeek.com"];
|
|
|
|
public string $license = self::LICENSE_GPLV2;
|
|
|
|
public string $description = "Ban images based on their hash";
|
|
|
|
public ?string $version = "0.1, October 21, 2007";
|
|
|
|
public ?string $documentation =
|
2019-08-07 14:53:59 -05:00
|
|
|
"Based on the ResolutionLimit and IPban extensions by Shish";
|
|
|
|
}
|