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

19 lines
348 B
PHP
Raw Normal View History

2021-12-14 18:32:47 +00:00
<?php
declare(strict_types=1);
namespace Shimmie2;
class TrashTheme extends Themelet
{
public function get_help_html(): string
{
2020-10-26 15:20:29 +00:00
return '<p>Search for posts in the trash.</p>
<div class="command_example">
2024-06-11 15:02:52 +00:00
<code>in:trash</code>
2020-10-26 15:20:29 +00:00
<p>Returns posts that are in the trash.</p>
2020-01-26 13:19:35 +00:00
</div>
';
}
}