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

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