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/trash/theme.php
2024-06-21 18:24:38 +01:00

18 lines
348 B
PHP

<?php
declare(strict_types=1);
namespace Shimmie2;
class TrashTheme extends Themelet
{
public function get_help_html(): string
{
return '<p>Search for posts in the trash.</p>
<div class="command_example">
<code>in:trash</code>
<p>Returns posts that are in the trash.</p>
</div>
';
}
}