This repository has been archived on 2024-08-19. You can view files and clone it, but cannot push or open issues or pull requests.
core/Zotlabs/Widget/Design_tools.php

14 lines
258 B
PHP

<?php
namespace Zotlabs\Widget;
class Design_tools {
function widget($arr) {
if(perm_is_allowed(\App::$profile['profile_uid'],get_observer_hash(),'write_pages') || (\App::$is_sys && is_site_admin()))
return design_tools();
return EMPTY_STR;
}
}