Files
cavepaintings/ext/numeric_score/info.php
Michael Yick 6c08ee9675 Revert "Merge tag 'v2.10.6'"
This reverts commit 122ea4ab9e, reversing
changes made to c54a11e250.
2024-02-16 23:06:09 -06:00

19 lines
565 B
PHP

<?php
declare(strict_types=1);
namespace Shimmie2;
class NumericScoreInfo extends ExtensionInfo
{
public const KEY = "numeric_score";
public string $key = self::KEY;
public string $name = "Post Scores (Numeric)";
public string $url = self::SHIMMIE_URL;
public array $authors = self::SHISH_AUTHOR;
public string $license = self::LICENSE_GPLV2;
public string $description = "Allow users to score images";
public ?string $documentation ="Each registered user may vote a post +1 or -1, the image's score is the sum of all votes.";
}