2020-01-26 13:19:35 +00:00
|
|
|
<?php declare(strict_types=1);
|
2007-12-02 17:50:03 +00:00
|
|
|
|
2019-12-15 15:31:44 +00:00
|
|
|
use function MicroHTML\LABEL;
|
|
|
|
use function MicroHTML\A;
|
|
|
|
use function MicroHTML\B;
|
|
|
|
use function MicroHTML\IMG;
|
|
|
|
use function MicroHTML\TABLE;
|
|
|
|
use function MicroHTML\THEAD;
|
|
|
|
use function MicroHTML\TFOOT;
|
|
|
|
use function MicroHTML\TBODY;
|
|
|
|
use function MicroHTML\TH;
|
|
|
|
use function MicroHTML\TR;
|
|
|
|
use function MicroHTML\TD;
|
|
|
|
use function MicroHTML\INPUT;
|
|
|
|
use function MicroHTML\DIV;
|
|
|
|
use function MicroHTML\P;
|
|
|
|
use function MicroHTML\BR;
|
|
|
|
use function MicroHTML\emptyHTML;
|
2020-03-05 02:09:02 +00:00
|
|
|
use function MicroHTML\rawHTML;
|
2019-12-09 14:18:25 +00:00
|
|
|
|
2019-05-28 16:59:38 +00:00
|
|
|
class ExtManagerTheme extends Themelet
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* #param ExtensionInfo[] $extensions
|
|
|
|
*/
|
|
|
|
public function display_table(Page $page, array $extensions, bool $editable)
|
|
|
|
{
|
2019-12-09 14:18:25 +00:00
|
|
|
$tbody = TBODY();
|
|
|
|
|
2020-01-26 13:25:02 +00:00
|
|
|
$form = SHM_SIMPLE_FORM(
|
2020-01-30 10:31:11 +00:00
|
|
|
"ext_manager/set",
|
2020-01-26 13:25:02 +00:00
|
|
|
TABLE(
|
|
|
|
["id"=>'extensions', "class"=>'zebra sortable'],
|
|
|
|
THEAD(TR(
|
|
|
|
$editable ? TH("Enabled") : null,
|
|
|
|
TH("Name"),
|
|
|
|
TH("Docs"),
|
|
|
|
TH("Description")
|
|
|
|
)),
|
|
|
|
$tbody,
|
|
|
|
$editable ? TFOOT(TR(TD(["colspan"=>'5'], INPUT(["type"=>'submit', "value"=>'Set Extensions'])))) : null
|
|
|
|
)
|
|
|
|
);
|
2019-12-09 14:18:25 +00:00
|
|
|
|
2019-05-28 16:59:38 +00:00
|
|
|
foreach ($extensions as $extension) {
|
2019-08-07 21:32:28 +00:00
|
|
|
if ((!$editable && $extension->visibility === ExtensionInfo::VISIBLE_ADMIN)
|
|
|
|
|| $extension->visibility === ExtensionInfo::VISIBLE_HIDDEN) {
|
2019-05-28 16:59:38 +00:00
|
|
|
continue;
|
|
|
|
}
|
2010-01-05 13:13:11 +00:00
|
|
|
|
2019-12-09 14:18:25 +00:00
|
|
|
$tbody->appendChild(TR(
|
|
|
|
["data-ext"=>$extension->name],
|
|
|
|
$editable ? TD(INPUT([
|
|
|
|
"type"=>'checkbox',
|
|
|
|
"name"=>"ext_{$extension->key}",
|
|
|
|
"id"=>"ext_{$extension->key}",
|
|
|
|
"checked"=>($extension->is_enabled() === true),
|
|
|
|
"disabled"=>($extension->is_supported()===false || $extension->core===true)
|
|
|
|
])) : null,
|
|
|
|
TD(LABEL(
|
|
|
|
["for"=>"ext_{$extension->key}"],
|
|
|
|
(
|
|
|
|
($extension->beta===true ? "[BETA] ":"").
|
|
|
|
(empty($extension->name) ? $extension->key : $extension->name)
|
|
|
|
)
|
|
|
|
)),
|
|
|
|
TD(
|
|
|
|
// TODO: A proper "docs" symbol would be preferred here.
|
|
|
|
$extension->documentation ?
|
|
|
|
A(
|
|
|
|
["href"=>make_link("ext_doc/" . url_escape($extension->key))],
|
|
|
|
IMG(["src"=>'ext/ext_manager/baseline_open_in_new_black_18dp.png'])
|
|
|
|
) :
|
|
|
|
null
|
|
|
|
),
|
|
|
|
TD(
|
|
|
|
["style"=>'text-align: left;'],
|
|
|
|
$extension->description,
|
|
|
|
" ",
|
|
|
|
B(["style"=>'color:red'], $extension->get_support_info())
|
|
|
|
),
|
|
|
|
));
|
2019-05-28 16:59:38 +00:00
|
|
|
}
|
2009-01-17 02:49:15 +00:00
|
|
|
|
2019-05-28 16:59:38 +00:00
|
|
|
$page->set_title("Extensions");
|
|
|
|
$page->set_heading("Extensions");
|
|
|
|
$page->add_block(new NavBlock());
|
2020-01-26 13:19:35 +00:00
|
|
|
$page->add_block(new Block("Extension Manager", (string)$form));
|
2019-05-28 16:59:38 +00:00
|
|
|
}
|
2009-01-17 02:49:15 +00:00
|
|
|
|
2019-08-07 19:53:59 +00:00
|
|
|
public function display_doc(Page $page, ExtensionInfo $info)
|
2019-05-28 16:59:38 +00:00
|
|
|
{
|
2019-12-09 14:18:25 +00:00
|
|
|
$author = emptyHTML();
|
2019-06-15 16:01:13 +00:00
|
|
|
if (count($info->authors) > 0) {
|
2019-12-09 14:18:25 +00:00
|
|
|
$author->appendChild(BR());
|
2020-03-05 02:09:02 +00:00
|
|
|
$author->appendChild(B(count($info->authors) > 1 ? "Authors: " : "Author: "));
|
2019-08-07 19:53:59 +00:00
|
|
|
foreach ($info->authors as $auth=>$email) {
|
|
|
|
if (!empty($email)) {
|
2019-12-09 14:18:25 +00:00
|
|
|
$author->appendChild(A(["href"=>"mailto:$email"], $auth));
|
2019-06-15 16:01:13 +00:00
|
|
|
} else {
|
2019-12-09 14:18:25 +00:00
|
|
|
$author->appendChild($auth);
|
2019-06-15 16:01:13 +00:00
|
|
|
}
|
2019-12-09 14:18:25 +00:00
|
|
|
$author->appendChild(BR());
|
2019-06-15 16:01:13 +00:00
|
|
|
}
|
2019-05-28 16:59:38 +00:00
|
|
|
}
|
2019-06-15 16:01:13 +00:00
|
|
|
|
2019-12-09 14:18:25 +00:00
|
|
|
$html = DIV(
|
|
|
|
["style"=>'margin: auto; text-align: left; width: 512px;'],
|
|
|
|
$author,
|
|
|
|
($info->version ? emptyHTML(BR(), B("Version"), $info->version) : null),
|
|
|
|
($info->link ? emptyHTML(BR(), B("Home Page"), A(["href"=>$info->link], "Link")) : null),
|
2020-03-06 13:44:51 +00:00
|
|
|
P(rawHTML($info->documentation ?? "(This extension has no documentation)")),
|
2019-12-09 14:18:25 +00:00
|
|
|
// <hr>,
|
|
|
|
P(A(["href"=>make_link("ext_manager")], "Back to the list"))
|
|
|
|
);
|
2009-01-17 04:00:52 +00:00
|
|
|
|
2019-06-15 16:01:13 +00:00
|
|
|
$page->set_title("Documentation for " . html_escape($info->name));
|
2019-05-28 16:59:38 +00:00
|
|
|
$page->set_heading(html_escape($info->name));
|
|
|
|
$page->add_block(new NavBlock());
|
2020-01-26 13:19:35 +00:00
|
|
|
$page->add_block(new Block("Documentation", (string)$html));
|
2019-05-28 16:59:38 +00:00
|
|
|
}
|
2007-12-02 17:50:03 +00:00
|
|
|
}
|