forked from Cavemanon/cavepaintings
13 lines
347 B
PHP
13 lines
347 B
PHP
<?php declare(strict_types=1);
|
|
|
|
class PostTitlesInfo extends ExtensionInfo
|
|
{
|
|
public const KEY = "post_titles";
|
|
|
|
public $key = self::KEY;
|
|
public $name = "Post Titles";
|
|
public $authors = ["Matthew Barbour"=>"matthew@darkholme.net"];
|
|
public $license = self::LICENSE_WTFPL;
|
|
public $description = "Add titles to media posts";
|
|
}
|