Source for file applicationSetupThree.php
Documentation is available at applicationSetupThree.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
$text = $GLOBALS['lang']['setupScreenTextThree'];
$this->_init($GLOBALS['lang']['setupHeaderThree'],$text,false);
$countryConfig = unserialize($_SESSION['rvtwo']['locale']);
$this->View['locale_thousands']= $countryConfig->getThousandsSeparator();
$this->View['locale_decimal']= $countryConfig->getDecimalSeparator();
$this->View['currency_sign']= $countryConfig->getCurrencySign();
$this->View['currency_intl']= $countryConfig->getIntlcurrencySign();
$this->View['prev_page'] = "applicationSetupTwo";
$this->View['form_to_display']= 'view_applicationSetupThree';
$this->View['page_to_display'] = 'view_template_setup_screen';
$_SESSION['rvtwo']['locale'] = serialize($countryConfig);
redirect (applicationSetupFour);
|