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 Summary View
  14.  *
  15.  * @package     Joomla.Installation
  16.  * @subpackage  View
  17.  * @since       3.1
  18.  */
  19. {
  20.     /**
  21.      * The session options
  22.      *
  23.      * @var    array 
  24.      * @since  3.1
  25.      */
  26.     protected $options;
  27.  
  28.     /**
  29.      * The PHP options checked by the installer
  30.      *
  31.      * @var    array 
  32.      * @since  3.1
  33.      */
  34.     protected $phpoptions;
  35.  
  36.     /**
  37.      * The PHP settings checked by the installer
  38.      *
  39.      * @var    array 
  40.      * @since  3.1
  41.      */
  42.     protected $phpsettings;
  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.         $this->phpoptions  = $this->model->getPhpOptions();
  55.         $this->phpsettings = $this->model->getPhpSettings();
  56.  
  57.         return parent::render();
  58.     }
  59. }

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