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

19 lines
573 B
PHP
Raw Normal View History

<?php
declare(strict_types=1);
2023-03-27 19:26:39 +00:00
namespace Shimmie2;
class BulkParentChildInfo extends ExtensionInfo
{
public const KEY = "bulk_parent_child";
public string $key = self::KEY;
public string $name = "Bulk Parent Child";
2023-11-11 21:49:12 +00:00
public array $authors = ["Flatty" => ""];
public string $license = self::LICENSE_WTFPL;
public string $description = "Allows bulk setting of parent-child relationships, in order of manual selection";
public array $dependencies = [BulkActionsInfo::KEY];
public ExtensionCategory $category = ExtensionCategory::METADATA;
}