[Text]
Testwidget: Home
<?php
/**
* Author: Chris
* License: MIT (Expat version) - https://license.neuhub.org
* Copyright (c) 2025
* args:
* no arguments here.
*/
namespace Zotlabs\Widget;
class Testwidget{
public function widget(array $arguments): string {
ob_start();
?>
<a href="https://help.hubzilla.hu/en/usermanual/apps.html" target="_blank"><i class="bi bi-life-preserver"></i> Manage Applications</a>
<?php
$object = ob_get_clean();
$output = (string)$object;
return $output;
}
}
/**
* Author: Chris
* License: MIT (Expat version) - https://license.neuhub.org
* Copyright (c) 2025
* args:
* no arguments here.
*/
namespace Zotlabs\Widget;
class Testwidget{
public function widget(array $arguments): string {
ob_start();
?>
<a href="https://help.hubzilla.hu/en/usermanual/apps.html" target="_blank"><i class="bi bi-life-preserver"></i> Manage Applications</a>
<?php
$object = ob_get_clean();
$output = (string)$object;
return $output;
}
}