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/private_image/theme.php

25 lines
574 B
PHP
Raw Normal View History

2021-12-14 18:32:47 +00:00
<?php
declare(strict_types=1);
namespace Shimmie2;
2020-06-02 23:08:24 +00:00
use function MicroHTML\INPUT;
class PrivateImageTheme extends Themelet
{
public function get_help_html(): string
2020-06-02 23:08:24 +00:00
{
2020-10-26 15:17:47 +00:00
return '<p>Search for posts that are private/public.</p>
2020-06-02 23:08:24 +00:00
<div class="command_example">
2024-06-11 15:02:52 +00:00
<code>private:yes</code>
2020-10-26 15:17:47 +00:00
<p>Returns posts that are private, restricted to yourself if you are not an admin.</p>
2020-06-02 23:08:24 +00:00
</div>
<div class="command_example">
2024-06-11 15:02:52 +00:00
<code>private:no</code>
2020-10-26 15:17:47 +00:00
<p>Returns posts that are public.</p>
2020-06-02 23:08:24 +00:00
</div>
';
}
}