Panel/modules/editconfigfiles/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

16 lines
No EOL
455 B
PHP

<?php
/*
* Component of the editconfigfiles module
*/
if(!empty($server_xml->configuration_files)) {
$module_buttons = array(
"<a href=\"?m=editconfigfiles&home_id=".(int)$server_home['home_id']."\" class=\"monitorbutton\">
<img src='" . check_theme_image("images/editconfig.png") . "' title='". get_lang("edit_configuration_files") ."'>
<span>". get_lang("edit_configuration_files") ."</span>
</a>"
);
}
else
$module_buttons = array();
?>