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

23 lines
823 B
PHP

<?php
declare(strict_types=1);
namespace Shimmie2;
class MediaTheme extends Themelet
{
public function get_help_html(): string
{
return '<p>Search for posts based on the type of media.</p>
<div class="command_example">
<code>content:audio</code>
<p>Returns posts that contain audio, including videos and audio files.</p>
</div>
<div class="command_example">
<code>content:video</code>
<p>Returns posts that contain video, including animated GIFs.</p>
</div>
<p>These search terms depend on the posts being scanned for media content. Automatic scanning was implemented in mid-2019, so posts uploaded before, or posts uploaded on a system without ffmpeg, will require additional scanning before this will work.</p>
';
}
}