19 lines
236 B
PHP
19 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);
|
|
}
|
|
|
|
}
|
|
|