streams/Code/Widget/Catcloud_wall.php

25 lines
550 B
PHP
Raw Normal View History

2017-03-16 03:56:12 +00:00
<?php
2022-02-16 04:08:28 +00:00
namespace Code\Widget;
2017-03-16 03:56:12 +00:00
2020-10-21 22:22:23 +00:00
use App;
2021-12-02 23:02:31 +00:00
class Catcloud_wall
{
2017-03-16 03:56:12 +00:00
2021-12-02 23:02:31 +00:00
public function widget($arr)
{
2017-03-16 03:56:12 +00:00
2021-12-03 03:01:39 +00:00
if ((!App::$profile['profile_uid']) || (!App::$profile['channel_hash'])) {
2021-12-02 23:02:31 +00:00
return '';
2021-12-03 03:01:39 +00:00
}
if (!perm_is_allowed(App::$profile['profile_uid'], get_observer_hash(), 'view_stream')) {
2021-12-02 23:02:31 +00:00
return '';
2021-12-03 03:01:39 +00:00
}
2017-03-16 03:56:12 +00:00
2021-12-02 23:02:31 +00:00
$limit = ((array_key_exists('limit', $arr)) ? intval($arr['limit']) : 50);
2017-03-16 03:56:12 +00:00
2021-12-02 23:02:31 +00:00
return catblock(App::$profile['profile_uid'], $limit, '', App::$profile['channel_hash'], 'wall');
}
2017-03-16 03:56:12 +00:00
}