streams/Zotlabs/Widget/Shortprofile.php

19 lines
236 B
PHP
Raw Normal View History

2017-03-16 03:11:28 +00:00
<?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);
}
}