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 Languages View
  14.  *
  15.  * @package     Joomla.Installation
  16.  * @subpackage  View
  17.  * @since       3.1
  18.  */
  19. {
  20.     /**
  21.      * Container with all available languages
  22.      *
  23.      * @var    array 
  24.      * @since  3.1
  25.      */
  26.     protected $items;
  27.  
  28.     /**
  29.      * Redefine the model so the correct type hinting is available.
  30.      *
  31.      * @var     InstallationModelLanguages 
  32.      * @since   3.1
  33.      */
  34.     protected $model;
  35.  
  36.     /**
  37.      * Method to render the view.
  38.      *
  39.      * @return  string  The rendered view.
  40.      *
  41.      * @since   3.1
  42.      */
  43.     public function render()
  44.     {
  45.         $this->items = $this->model->getItems();
  46.  
  47.         return parent::render();
  48.     }
  49. }

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