streams/Code/Widget/Appcloud.php

16 lines
210 B
PHP
Raw Normal View History

2017-03-16 03:11:28 +00:00
<?php
2022-02-16 04:08:28 +00:00
namespace Code\Widget;
2017-03-16 03:11:28 +00:00
2021-12-02 23:02:31 +00:00
class Appcloud
{
public function widget($arr)
{
2021-12-03 03:01:39 +00:00
if (!local_channel()) {
2021-12-02 23:02:31 +00:00
return '';
2021-12-03 03:01:39 +00:00
}
2021-12-02 23:02:31 +00:00
return app_tagblock(z_root() . '/apps');
}
2017-03-16 03:11:28 +00:00
}