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

134 lines
4.3 KiB
PHP

<?php
declare(strict_types=1);
namespace Shimmie2;
class NumericScoreTheme extends Themelet
{
public function get_voter(Image $image): void
{
global $user, $page;
$i_image_id = $image->id;
$i_score = (int)$image['numeric_score'];
$html = "
Current Score: $i_score
<p>".make_form(make_link("numeric_score_vote"))."
<input type='hidden' name='image_id' value='$i_image_id'>
<input type='hidden' name='vote' value='1'>
<input type='submit' value='Vote Up'>
</form>
".make_form(make_link("numeric_score_vote"))."
<input type='hidden' name='image_id' value='$i_image_id'>
<input type='hidden' name='vote' value='0'>
<input type='submit' value='Remove Vote'>
</form>
".make_form(make_link("numeric_score_vote"))."
<input type='hidden' name='image_id' value='$i_image_id'>
<input type='hidden' name='vote' value='-1'>
<input type='submit' value='Vote Down'>
</form>
";
if ($user->can(Permissions::EDIT_OTHER_VOTE)) {
$html .= make_form(make_link("numeric_score/remove_votes_on"))."
<input type='hidden' name='image_id' value='$i_image_id'>
<input type='submit' value='Remove All Votes'>
</form>
<br><div id='votes-content'>
<a
href='".make_link("numeric_score_votes/$i_image_id")."'
onclick='$(\"#votes-content\").load(\"".make_link("numeric_score_votes/$i_image_id")."\"); return false;'
>See All Votes</a>
</div>
";
}
$page->add_block(new Block("Post Score", $html, "left", 20));
}
public function get_nuller(User $duser): void
{
global $user, $page;
$html = make_form(make_link("numeric_score/remove_votes_by"))."
<input type='hidden' name='user_id' value='{$duser->id}'>
<input type='submit' value='Delete all votes by this user'>
</form>
";
$page->add_block(new Block("Votes", $html, "main", 80));
}
/**
* @param Image[] $images
*/
public function view_popular(array $images, string $totaldate, string $current, string $name, string $fmt): void
{
global $page, $config;
$pop_images = "";
foreach ($images as $image) {
$pop_images .= $this->build_thumb_html($image)."\n";
}
$b_dte = make_link("popular_by_$name", date($fmt, \Safe\strtotime("-1 $name", \Safe\strtotime($totaldate))));
$f_dte = make_link("popular_by_$name", date($fmt, \Safe\strtotime("+1 $name", \Safe\strtotime($totaldate))));
$html = "\n".
"<h3 style='text-align: center;'>\n".
" <a href='{$b_dte}'>&laquo;</a> {$current} <a href='{$f_dte}'>&raquo;</a>\n".
"</h3>\n".
"<br/>\n".$pop_images;
$nav_html = "<a href=".make_link().">Index</a>";
$page->set_heading($config->get_string(SetupConfig::TITLE));
$page->add_block(new Block("Navigation", $nav_html, "left", 10));
$page->add_block(new Block(null, $html, "main", 30));
}
public function get_help_html(): string
{
return '<p>Search for posts that have received numeric scores by the score or by the scorer.</p>
<div class="command_example">
<code>score=1</code>
<p>Returns posts with a score of 1.</p>
</div>
<div class="command_example">
<code>score>0</code>
<p>Returns posts with a score of 1 or more.</p>
</div>
<p>Can use &lt;, &lt;=, &gt;, &gt;=, or =.</p>
<div class="command_example">
<code>upvoted_by=username</code>
<p>Returns posts upvoted by "username".</p>
</div>
<div class="command_example">
<code>upvoted_by_id=123</code>
<p>Returns posts upvoted by user 123.</p>
</div>
<div class="command_example">
<code>downvoted_by=username</code>
<p>Returns posts downvoted by "username".</p>
</div>
<div class="command_example">
<code>downvoted_by_id=123</code>
<p>Returns posts downvoted by user 123.</p>
</div>
<div class="command_example">
<code>order:score_desc</code>
<p>Sorts the search results by score, descending.</p>
</div>
<div class="command_example">
<code>order:score_asc</code>
<p>Sorts the search results by score, ascending.</p>
</div>
';
}
}