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

19 lines
No EOL
262 B
PHP

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