2021-12-14 18:32:47 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
2014-02-03 13:54:09 +00:00
|
|
|
|
2019-05-28 16:59:38 +00:00
|
|
|
class RelationshipsTheme extends Themelet
|
|
|
|
{
|
|
|
|
public function relationship_info(Image $image)
|
|
|
|
{
|
|
|
|
global $page, $database;
|
|
|
|
|
|
|
|
if ($image->parent_id !== null) {
|
|
|
|
$a = "<a href='".make_link("post/view/".$image->parent_id)."'>parent post</a>";
|
2021-02-09 06:44:37 +00:00
|
|
|
$page->add_block(new Block(null, "This post belongs to a $a.", "main", 5, "ImageHasParent"));
|
2019-05-28 16:59:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (bool_escape($image->has_children)) {
|
|
|
|
$ids = $database->get_col("SELECT id FROM images WHERE parent_id = :iid", ["iid"=>$image->id]);
|
|
|
|
|
|
|
|
$html = "This post has <a href='".make_link('post/list/parent='.$image->id.'/1')."'>".(count($ids) > 1 ? "child posts" : "a child post")."</a>";
|
|
|
|
$html .= " (post ";
|
|
|
|
foreach ($ids as $id) {
|
|
|
|
$html .= "#<a href='".make_link('post/view/'.$id)."'>{$id}</a>, ";
|
|
|
|
}
|
|
|
|
$html = rtrim($html, ", ").").";
|
|
|
|
|
2021-02-09 06:44:37 +00:00
|
|
|
$page->add_block(new Block(null, $html, "main", 6, "ImageHasChildren"));
|
2019-05-28 16:59:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function get_parent_editor_html(Image $image): string
|
|
|
|
{
|
|
|
|
global $user;
|
|
|
|
|
|
|
|
$h_parent_id = $image->parent_id;
|
|
|
|
$s_parent_id = $h_parent_id ?: "None";
|
|
|
|
|
|
|
|
$html = "<tr>\n".
|
|
|
|
" <th>Parent</th>\n".
|
|
|
|
" <td>\n".
|
|
|
|
(
|
|
|
|
!$user->is_anonymous() ?
|
|
|
|
" <span class='view' style='overflow: hidden; white-space: nowrap;'>{$s_parent_id}</span>\n".
|
|
|
|
" <input class='edit' type='number' name='tag_edit__parent' type='number' value='{$h_parent_id}'>\n"
|
|
|
|
:
|
|
|
|
$s_parent_id
|
|
|
|
).
|
|
|
|
" <td>\n".
|
|
|
|
"</tr>\n";
|
|
|
|
return $html;
|
|
|
|
}
|
2019-08-02 20:05:49 +00:00
|
|
|
|
|
|
|
|
2021-03-14 23:43:50 +00:00
|
|
|
public function get_help_html(): string
|
2019-08-02 20:05:49 +00:00
|
|
|
{
|
2020-10-26 15:23:32 +00:00
|
|
|
return '<p>Search for posts that have parent/child relationships.</p>
|
2019-08-02 20:05:49 +00:00
|
|
|
<div class="command_example">
|
|
|
|
<pre>parent=any</pre>
|
2020-10-26 15:23:32 +00:00
|
|
|
<p>Returns posts that have a parent.</p>
|
|
|
|
</div>
|
2019-08-02 20:05:49 +00:00
|
|
|
<div class="command_example">
|
|
|
|
<pre>parent=none</pre>
|
2020-10-26 15:23:32 +00:00
|
|
|
<p>Returns posts that have no parent.</p>
|
|
|
|
</div>
|
2019-08-02 20:05:49 +00:00
|
|
|
<div class="command_example">
|
|
|
|
<pre>parent=123</pre>
|
2020-10-26 15:23:32 +00:00
|
|
|
<p>Returns posts that have image 123 set as parent.</p>
|
|
|
|
</div>
|
2019-08-02 20:05:49 +00:00
|
|
|
<div class="command_example">
|
|
|
|
<pre>child=any</pre>
|
2020-10-26 15:23:32 +00:00
|
|
|
<p>Returns posts that have at least 1 child.</p>
|
|
|
|
</div>
|
2019-08-02 20:05:49 +00:00
|
|
|
<div class="command_example">
|
|
|
|
<pre>child=none</pre>
|
2020-10-26 15:23:32 +00:00
|
|
|
<p>Returns posts that have no children.</p>
|
|
|
|
</div>
|
2019-08-02 20:05:49 +00:00
|
|
|
';
|
|
|
|
}
|
2014-02-03 13:54:09 +00:00
|
|
|
}
|