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/image_hash_ban/info.php

17 lines
540 B
PHP
Raw Normal View History

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