mirror of
https://framagit.org/hubzilla/core.git
synced 2026-06-21 00:52:33 -04:00
20 lines
280 B
PHP
20 lines
280 B
PHP
<?php
|
|
|
|
/**
|
|
* * Name: App cloud
|
|
* * Description: Shows a cloud with various app categories
|
|
* * Requires: apps
|
|
*/
|
|
|
|
namespace Zotlabs\Widget;
|
|
|
|
class Appcloud {
|
|
|
|
function widget($arr) {
|
|
if(! local_channel())
|
|
return '';
|
|
return app_tagblock(z_root() . '/apps');
|
|
}
|
|
}
|
|
|