streams/Zotlabs/Widget/Shortprofile.php
2017-03-29 11:50:03 +02:00

18 lines
236 B
PHP

<?php
namespace Zotlabs\Widget;
class Shortprofile {
function widget($arr) {
if(! \App::$profile['profile_uid'])
return;
$block = observer_prohibited();
return profile_sidebar(\App::$profile, $block, true, true);
}
}