streams/Zotlabs/Widget/Fullprofile.php
2019-04-17 19:19:49 -07:00

19 lines
258 B
PHP

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