mirror of
https://framagit.org/hubzilla/core.git
synced 2026-06-21 00:52:33 -04:00
58 lines
1.0 KiB
PHP
58 lines
1.0 KiB
PHP
<?php
|
|
|
|
/**
|
|
* * Name: Tokens
|
|
* * Description: Display a menu with links to existing guest access tokens
|
|
* * Requires: tokens
|
|
*/
|
|
|
|
namespace Zotlabs\Widget;
|
|
|
|
class Tokens {
|
|
|
|
function widget($arr) {
|
|
|
|
$o = '';
|
|
|
|
$tokens = q("SELECT atoken_id, atoken_name FROM atoken WHERE atoken_uid = %d",
|
|
intval(local_channel())
|
|
);
|
|
|
|
if (!$tokens) {
|
|
return $o;
|
|
}
|
|
|
|
$menu_items = [];
|
|
$z_root = z_root();
|
|
$active = argv(1) ?? '';
|
|
|
|
foreach($tokens as $token) {
|
|
$menu_items[] = [
|
|
'href' => $z_root . '/tokens/' . $token['atoken_id'],
|
|
'label' => $token['atoken_name'],
|
|
'title' => '',
|
|
'active' => ($active === $token['atoken_id'])
|
|
];
|
|
}
|
|
|
|
if ($active) {
|
|
$menu_items[] = [
|
|
'href' => $z_root . '/tokens',
|
|
'label' => '<i class="bi bi-plus-lg"></i> ' . t('Add new guest'),
|
|
'title' => '',
|
|
'active' => ''
|
|
];
|
|
}
|
|
|
|
$tpl = get_markup_template("widget_menu.tpl");
|
|
$o .= replace_macros($tpl, [
|
|
'$title' => t('Guest access'),
|
|
'$menu_items' => $menu_items,
|
|
|
|
]);
|
|
|
|
return $o;
|
|
|
|
}
|
|
}
|