Controllers
[ class tree: Controllers ] [ index: Controllers ] [ all elements ]

Source for file applicationSetupFour.php

Documentation is available at applicationSetupFour.php

  1. <?php
  2. /**
  3.  * <b>Class Description</b>: Controller for initial system setup
  4.  * Created On: 30 March 2009
  5.  * @author Jan van der Breggen
  6.  * @package Controllers
  7.  * @subpackage SystemSetupScreens
  8.  * @see controllersPackage.php
  9.  * @todo
  10.  ***/
  11. {
  12.  
  13.     function index()
  14.     {
  15.         $text $GLOBALS['lang']['setupScreenTextFour'];
  16.         $this->_init($GLOBALS['lang']['setupHeaderFour'],$text);
  17. $this->setPackageInfo("SystemSetupScreens");
  18.         $countryConfig unserialize($_SESSION['rvtwo']['locale']);
  19.         $this->View['form_to_display']'view_applicationSetupFour';
  20.         $this->View['page_to_display''view_template_setup_screen';
  21.         $this->View['prev_page'"applicationSetupThree";
  22.         $this->View['doc']"/intro/index/$this->className/".USER_LANGUAGE;
  23.         
  24.         display_view($this->viewTemplate$this->View);
  25.          $_SESSION['rvtwo']['locale'serialize($countryConfig);
  26.          
  27.     }
  28.  
  29.     function verification ()
  30.     {
  31.  
  32.         redirect (applicationSetupFive);
  33.  
  34.  
  35.  
  36.     }
  37.  
  38.  
  39. }
  40. ?>

Documentation generated on Mon, 18 May 2009 11:21:32 +0200 by phpDocumentor 1.4.1