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

20 lines
303 B
PHP

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