Source for file applicationSetupTwo.php
Documentation is available at applicationSetupTwo.php
* <b>Class Description</b>: Controller for initial system setup
* Created On: 30 March 2009
* @author Jan van der Breggen
* @subpackage SystemSetupScreens
* @see controllersPackage.php
$countryConfig = unserialize($_SESSION['rvtwo']['locale']);
$text = $GLOBALS['lang']['setupScreenTextTwo']. $countryConfig->getCountryLabel();
$this->_init($GLOBALS['lang']['setupHeaderTwo'],$text, false);
$this->View['page_to_display'] = 'view_applicationSetupTwo';
$this->View['locale_thousands']= $countryConfig->getThousandsSeparator();
$this->View['locale_decimal']= $countryConfig->getDecimalSeparator();
$this->View['prev_page'] = "applicationSetupOne";
$this->View['form_to_display']= 'view_applicationSetupTwo';
$this->View['page_to_display'] = 'view_template_setup_screen';
$_SESSION['rvtwo']['locale'] = serialize($countryConfig);
redirect (applicationSetupThree);
|