streams/Code/Widget/Shortprofile.php
2022-06-01 14:18:51 -07:00

18 lines
288 B
PHP

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