streams/Zotlabs/Widget/Shortprofile.php
2019-07-07 23:35:24 -07:00

17 lines
267 B
PHP

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