15 lines
442 B
PHP
15 lines
442 B
PHP
|
<?php
|
||
|
|
||
|
class BulkRemoveInfo extends ExtensionInfo
|
||
|
{
|
||
|
public const KEY = "bulk_remove";
|
||
|
|
||
|
public $key = self::KEY;
|
||
|
public $name = "Bulk Remove";
|
||
|
public $beta = true;
|
||
|
public $url = "http://www.drudexsoftware.com/";
|
||
|
public $authors = ["Drudex Software"=>"support@drudexsoftware.com"];
|
||
|
public $license = self::LICENSE_GPLV2;
|
||
|
public $description = "Allows admin to delete many images at once through Board Admin.";
|
||
|
}
|