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

20 lines
281 B
PHP

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