(2010-) * @license GPLv2 http://files.froxlor.org/misc/COPYING.txt * @package Language * */ /** * Function getPreConfig * * outputs various content before the update process * can be continued (askes for agreement whatever is being asked) * * @param string $current_version * @param int $current_db_version * * @return string */ function getPreConfig($current_version, $current_db_version) { $has_preconfig = false; $return = '

PLEASE NOTE - Important update notifications

'; include_once \Froxlor\FileDir::makeCorrectFile(dirname(__FILE__) . '/preconfig/0.9/preconfig_0.9.inc.php'); parseAndOutputPreconfig($has_preconfig, $return, $current_version, $current_db_version); $return .= '

' . \Froxlor\UI\HTML::makecheckbox('update_changesagreed', 'I have read the update notifications above and I am aware of the changes made to my system.', '1', true, '0', true); $return .= '
'; $return .= ''; if ($has_preconfig) { return $return; } else { return ''; } } function versionInUpdate($current_version, $version_to_check) { if (! isFroxlor()) { return true; } return (\Froxlor\Froxlor::version_compare2($current_version, $version_to_check) == - 1 ? true : false); }