Source for file applicationSetupFour.php
Documentation is available at applicationSetupFour.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']['setupScreenTextFour'];
$this->_init($GLOBALS['lang']['setupHeaderFour'],$text);
$countryConfig = unserialize($_SESSION['rvtwo']['locale']);
$this->View['form_to_display']= 'view_applicationSetupFour';
$this->View['page_to_display'] = 'view_template_setup_screen';
$this->View['prev_page'] = "applicationSetupThree";
$this->View['doc']= "/intro/index/$this->className/". USER_LANGUAGE;
$_SESSION['rvtwo']['locale'] = serialize($countryConfig);
redirect (applicationSetupFive);
|