mirror of
https://framagit.org/hubzilla/core.git
synced 2026-06-21 00:52:33 -04:00
28 lines
578 B
PHP
28 lines
578 B
PHP
<?php
|
|
|
|
/**
|
|
* * Name: Website import/export
|
|
* * Description: Tools to import and export websites
|
|
* * Requires: website
|
|
*/
|
|
|
|
namespace Zotlabs\Widget;
|
|
|
|
class Website_portation_tools {
|
|
|
|
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();
|
|
}
|
|
}
|