From 5e93cdd45c2d0dea2fdafc08a48991f9924b248a Mon Sep 17 00:00:00 2001 From: Robert Sesek Date: Tue, 22 Nov 2005 03:38:08 +0000 Subject: [PATCH] Added installer.php module --- installer.php | 98 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 98 insertions(+) create mode 100644 installer.php diff --git a/installer.php b/installer.php new file mode 100644 index 0000000..fc064c6 --- /dev/null +++ b/installer.php @@ -0,0 +1,98 @@ +sourcepath . 'installer.css.php'); +?> + + + + + <?= $GLOBALS['isso:null-framework']->application ?> Installer + + + + + + for when all the steps have been reached. +* +* @access public +* +* @param bool Produce the "Next" button? +*/ +function page_end($next = true) +{ + if (defined('STOP_MARK') AND $next) + { + if ($GLOBALS['isso:null-framework']->in['mark'] >= STOP_MARK) + { + echo ''; + } + else + { + echo ''; + } + } + + echo ' + + + +'; + + exit; +} + + +/*=====================================================================*\ +|| ################################################################### +|| # $HeadURL$ +|| # $Id$ +|| ################################################################### +\*=====================================================================*/ +?> \ No newline at end of file -- 2.43.5