Source for file applicationSetupSix.php
Documentation is available at applicationSetupSix.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
function index($header= '', $text= '', $other= '')
$text = $GLOBALS['lang']['setupScreenTextSix'];
$this->_init($GLOBALS['lang']['setupHeaderSix'],$text);
$countryConfig = unserialize($_SESSION['rvtwo']['locale']);
$this->View['form_to_display']= 'view_applicationSetupSix';
$this->View['page_to_display'] = 'view_template_setup_screen';
$this->View['prev_page'] = "applicationSetupFive";
$_SESSION['rvtwo']['locale'] = serialize($countryConfig);
redirect (studentSearch);
|