Panel/modules/litefm/monitor_buttons.php
copilot-swe-agent[bot] 898018d204 Complete license header replacement with file purpose descriptions (675 files)
Co-authored-by: iaretechnician <2749183+iaretechnician@users.noreply.github.com>
2025-09-05 22:46:27 +00:00

18 lines
No EOL
422 B
PHP

<?php
/*
* Component of the litefm module
*/
if(preg_match("/f/",$server_home['access_rights']) > 0)
{
$module_buttons = array(
"<a class='monitorbutton' href='?m=litefm&amp;home_id=".$server_home['home_id']."'>
<img src='" . check_theme_image("images/filemanager.png") . "' title='". get_lang("file_manager") ."'>
<span>". get_lang("file_manager") ."</span>
</a>"
);
}
else
$module_buttons = array();
?>