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

20 lines
278 B
PHP

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