mirror of
https://framagit.org/hubzilla/core.git
synced 2026-06-21 00:52:33 -04:00
21 lines
375 B
PHP
21 lines
375 B
PHP
<?php
|
|
|
|
/**
|
|
* * Name: Design tools
|
|
* * Description: Links to useful tools for webpages
|
|
* * Requires: webpages
|
|
*/
|
|
|
|
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;
|
|
}
|
|
}
|