fembooru/ext/approval/info.php

21 lines
616 B
PHP
Raw Normal View History

2019-10-14 13:35:33 -05:00
<?php
/*
* Name: Trash
* Author: Matthew Barbour <matthew@darkohlme.net>
* Description: Provides "Trash" or "Recycle Bin"-type functionality, storing delete images for later recovery
* Documentation:
*/
class ApprovalInfo extends ExtensionInfo
{
public const KEY = "approval";
public $key = self::KEY;
public $name = "Approval";
public $authors = ["Matthew Barbour"=>"matthew@darkholme.net"];
public $license = self::LICENSE_WTFPL;
public $description = "Adds an approval step to the upload/import process.";
public $db_support = [DatabaseDriver::MYSQL, DatabaseDriver::PGSQL];
}