Source for file html.php

Documentation is available at html.php

  1. <?php
  2. /**
  3.  * @package     Joomla.Installation
  4.  * @subpackage  View
  5.  *
  6.  * @copyright   Copyright (C) 2005 - 2013 Open Source Matters, Inc. All rights reserved.
  7.  * @license     GNU General Public License version 2 or later; see LICENSE.txt
  8.  */
  9.  
  10. defined('_JEXEC'or die;
  11.  
  12. /**
  13.  * The Installation Complete View
  14.  *
  15.  * @package     Joomla.Installation
  16.  * @subpackage  View
  17.  * @since       3.1
  18.  */
  19. {
  20.     /**
  21.      * The JConfiguration data if present
  22.      *
  23.      * @var    JRegistry 
  24.      * @since  3.1
  25.      */
  26.     protected $config;
  27.  
  28.     /**
  29.      * Redefine the model so the correct type hinting is available.
  30.      *
  31.      * @var     InstallationModelSetup 
  32.      * @since   3.1
  33.      */
  34.     protected $model;
  35.  
  36.     /**
  37.      * The session options
  38.      *
  39.      * @var    array 
  40.      * @since  3.1
  41.      */
  42.     protected $options;
  43.  
  44.     /**
  45.      * Method to render the view.
  46.      *
  47.      * @return  string  The rendered view.
  48.      *
  49.      * @since   3.1
  50.      */
  51.     public function render()
  52.     {
  53.         $this->options = $this->model->getOptions();
  54.  
  55.         // Get the config string from the session.
  56.         $session JFactory::getSession();
  57.         $this->config = $session->get('setup.config'null);
  58.  
  59.         return parent::render();
  60.     }
  61. }

Documentation generated on Tue, 19 Nov 2013 15:04:46 +0100 by phpDocumentor 1.4.3