streams/Code/Widget/Appcloud.php
2022-10-23 20:39:49 -07:00

15 lines
257 B
PHP

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