streams/Zotlabs/Widget/Shortprofile.php
2021-12-03 14:01:39 +11:00

18 lines
310 B
PHP

<?php
namespace Zotlabs\Widget;
use App;
use Zotlabs\Lib\Libprofile;
class Shortprofile
{
public function widget($arr)
{
if (App::$profile['profile_uid']) {
return Libprofile::widget(App::$profile, observer_prohibited(), true, true);
}
return EMPTY_STR;
}
}