Question about the removal of the backup feature (Bugs)
Hello,
Am I right, that when I remove the function in the variable
initBackupControls
and its call inside the functionMyLittleAdmin
there remains nothing more than the call forDragAndDropTable
in the event listener?
I think this file content can be reduced to
document.addEventListener("DOMContentLoaded", function(e) { new DragAndDropTable(document.getElementById("sortable"), "admin", "action"); });
Moreover, the i18n files can be reduced due to the reduction, i.e.,
lang["delete_backup_confirm"] lang["delete_sel_backup_confirm"] lang["check_all"] lang["uncheck_all"]
In js_defaults.inc.php, the block becomes obsolete, too
<?php if(isset($user_type) && $user_type==2): ?> lang["check_all"] = "<?php echo addslashes($lang['check_all']); ?>"; lang["uncheck_all"] = "<?php echo addslashes($lang['uncheck_all']); ?>"; lang["delete_backup_confirm"] = "<?php echo addslashes($lang['delete_backup_confirm']); ?>"; lang["delete_sel_backup_confirm"] = "<?php echo addslashes($lang['delete_sel_backup_confirm']); ?>"; <?php endif; ?>
Do you modify these files?
/Micha
--
applied-geodesy.org - OpenSource Least-Squares Adjustment Software for Geodetic Sciences