24 lines
1 KiB
PHP
24 lines
1 KiB
PHP
|
<?php
|
||
|
|
||
|
/*
|
||
|
* Name: Bulk Actions
|
||
|
* Author: Matthew Barbour
|
||
|
* License: WTFPL
|
||
|
* Description: Provides query and selection-based bulk action support
|
||
|
* Documentation: Provides bulk action section in list view. Allows performing actions against a set of images based on query or manual selection.
|
||
|
* Based on Mass Tagger by Christian Walde <walde.christian@googlemail.com>, contributions by Shish and Agasa.
|
||
|
*/
|
||
|
|
||
|
|
||
|
class BulkActionsInfo extends ExtensionInfo
|
||
|
{
|
||
|
public const KEY = "bulk_actions";
|
||
|
|
||
|
public $key = self::KEY;
|
||
|
public $name = "Bulk Actions";
|
||
|
public $authors = ["Matthew Barbour"=>"matthew@darkholme.net"];
|
||
|
public $license = self::LICENSE_WTFPL;
|
||
|
public $description = "Provides query and selection-based bulk action support";
|
||
|
public $documentation = "Provides bulk action section in list view. Allows performing actions against a set of images based on query or manual selection. Based on Mass Tagger by Christian Walde <walde.christian@googlemail.com>, contributions by Shish and Agasa.";
|
||
|
}
|