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

Source for file applicationSetupFive.php

Documentation is available at applicationSetupFive.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.  ***/
  9.  
  10. {
  11.  
  12.     function index()
  13.     {
  14.         $text $GLOBALS['lang']['setupScreenTextFive'];
  15.         $this->_init($GLOBALS['lang']['setupHeaderFive'],$text);
  16.         $this->setPackageInfo("SystemSetupScreens");
  17.       $countryConfig unserialize($_SESSION['rvtwo']['locale']);
  18.               
  19.         $this->View['form_to_display']'view_applicationSetupFive';
  20.         $this->View['page_to_display''view_template_setup_screen';
  21.         $this->View['prev_page'"applicationSetupFour";
  22.         $this->View['doc']"/ddms";
  23.         $_SESSION['rvtwo']['locale'serialize($countryConfig);
  24.         display_view($this->viewTemplate$this->View);
  25.        
  26.             
  27.     }
  28.     
  29.     function verification ()
  30.     {
  31.         
  32.         redirect (applicationSetupSix);
  33.         
  34.         
  35.         
  36.     }
  37.     
  38.  
  39. }
  40. ?>

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