23 lines
692 B
PHP
23 lines
692 B
PHP
<?php
|
|
|
|
/*
|
|
* Name: [Beta] Bulk Remove
|
|
* Author: Drudex Software <support@drudexsoftware.com>
|
|
* Link: http://www.drudexsoftware.com/
|
|
* License: GPLv2
|
|
* Description: Allows admin to delete many images at once through Board Admin.
|
|
* Documentation:
|
|
*
|
|
*/
|
|
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.";
|
|
}
|