streams/Zotlabs/Widget/Website_portation_tools.php
2021-12-03 10:02:31 +11:00

26 lines
539 B
PHP

<?php
namespace Zotlabs\Widget;
use App;
class Website_portation_tools
{
public function widget($arr)
{
// mod menu doesn't load a profile. For any modules which load a profile, check it.
// otherwise local_channel() is sufficient for permissions.
if (App::$profile['profile_uid'])
if ((App::$profile['profile_uid'] != local_channel()) && (!App::$is_sys))
return '';
if (!local_channel())
return '';
return website_portation_tools();
}
}