streams/Code/Module/Tagadelic.php
2022-02-15 20:08:28 -08:00

47 lines
1.1 KiB
PHP

<?php
namespace Code\Module;
use App;
use Code\Lib\Apps;
use Code\Lib\Libsync;
use Code\Lib\Libprofile;
use Code\Web\Controller;
use Code\Render\Comanche;
class Tagadelic extends Controller
{
public function init()
{
if (local_channel()) {
$channel = App::get_channel();
if ($channel && $channel['channel_address']) {
$which = $channel['channel_address'];
}
Libprofile::load($which, 0);
}
}
public function get()
{
$desc = t('This app displays a hashtag cloud on your channel homepage.');
$text = '<div class="section-content-info-wrapper">' . $desc . '</div>';
if (!(local_channel() && Apps::system_app_installed(local_channel(), 'Tagadelic'))) {
return $text;
}
$desc = t('This app is installed. It displays a hashtag cloud on your channel homepage.');
$text = '<div class="section-content-info-wrapper">' . $desc . '</div>';
$c = new Comanche();
return $text . EOL . EOL . $c->widget('tagcloud_wall', EMPTY_STR);
}
}