msd Backup hinzugefügt

This commit is contained in:
aschwarz
2023-07-25 19:16:12 +02:00
parent 50297c1d25
commit 1d3ed789b5
680 changed files with 103120 additions and 0 deletions

33
msd/help.php Normal file
View File

@ -0,0 +1,33 @@
<?php
/* ----------------------------------------------------------------------
MyOOS [Dumper]
http://www.oos-shop.de/
Copyright (c) 2013 - 2022 by the MyOOS Development Team.
----------------------------------------------------------------------
Based on:
MySqlDumper
http://www.mysqldumper.de
Copyright (C)2004-2011 Daniel Schlichtholz (admin@mysqldumper.de)
----------------------------------------------------------------------
Released under the GNU General Public License
---------------------------------------------------------------------- */
define('OOS_VALID_MOD', true);
if (!@ob_start('ob_gzhandler')) {
@ob_start();
}
include './inc/header.php';
include MOD_PATH.'language/'.$config['language'].'/lang.php';
include MOD_PATH.'language/'.$config['language'].'/lang_help.php';
echo MODHeader(0);
echo headline($lang['L_CREDITS']);
readfile(MOD_PATH.'language/'.$config['language'].'/help.html');
echo MODFooter();
ob_end_flush();
exit();