streams/Code/Widget/Profile.php
2022-02-15 20:08:28 -08:00

20 lines
297 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, observer_prohibited(), true);
}
}