streams/Code/Widget/Appcloud.php
2022-10-24 08:18:44 +11:00

15 lines
251 B
PHP

<?php
namespace Code\Widget;
class Appcloud implements WidgetInterface
{
public function widget(array $arr): string
{
if (!local_channel()) {
return '';
}
return app_tagblock(z_root() . '/apps');
}
}