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

Source for file applicationSetupTwo.php

Documentation is available at applicationSetupTwo.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.          $countryConfig unserialize($_SESSION['rvtwo']['locale']);
  16.         $text $GLOBALS['lang']['setupScreenTextTwo']$countryConfig->getCountryLabel();
  17.         $this->_init($GLOBALS['lang']['setupHeaderTwo'],$textfalse);
  18.         $this->setPackageInfo("SystemSetupScreens");
  19.         $this->View['page_to_display''view_applicationSetupTwo';
  20.       
  21.         $this->View['locale_thousands']$countryConfig->getThousandsSeparator();
  22.         $this->View['locale_decimal']$countryConfig->getDecimalSeparator();
  23.        $this->View['prev_page'"applicationSetupOne";
  24.        $this->View['form_to_display']'view_applicationSetupTwo';
  25.         $this->View['page_to_display''view_template_setup_screen';
  26.   
  27.        $_SESSION['rvtwo']['locale'serialize($countryConfig);
  28.         display_view($this->viewTemplate$this->View);
  29.        
  30.             
  31.     }
  32.     
  33.     function verification ()
  34.     {
  35.         
  36.         redirect (applicationSetupThree);
  37.         
  38.         
  39.         
  40.     }
  41.     
  42.  
  43. }
  44. ?>

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