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

24 lines
609 B
PHP

<?php
namespace Code\Widget;
use App;
class Catcloud_wall implements WidgetInterface
{
public function widget(array $arguments): string
{
if ((!App::$profile['profile_uid']) || (!App::$profile['channel_hash'])) {
return '';
}
if (!perm_is_allowed(App::$profile['profile_uid'], get_observer_hash(), 'view_stream')) {
return '';
}
$limit = ((array_key_exists('limit', $arguments)) ? intval($arguments['limit']) : 50);
return catblock(App::$profile['profile_uid'], $limit, '', App::$profile['channel_hash'], 'wall');
}
}