Source for file html.php

Documentation is available at html.php

  1. <?php
  2.  
  3. /**
  4.  * @package     Joomla.Installation
  5.  * @subpackage  View
  6.  *
  7.  * @copyright   Copyright (C) 2005 - 2013 Open Source Matters, Inc. All rights reserved.
  8.  * @license     GNU General Public License version 2 or later; see LICENSE.txt
  9.  */
  10.  
  11. defined('_JEXEC'or die;
  12.  
  13. /**
  14.  * The Installation Default Language View
  15.  *
  16.  * @package     Joomla.Installation
  17.  * @subpackage  View
  18.  * @since       3.1
  19.  */
  20. {
  21.     /**
  22.      * Container with all installed languages
  23.      *
  24.      * @var    array 
  25.      * @since  3.1
  26.      */
  27.     public $items;
  28.  
  29.     /**
  30.      * Redefine the model so the correct type hinting is available.
  31.      *
  32.      * @var     InstallationModelLanguages 
  33.      * @since   3.1
  34.      */
  35.     protected $model;
  36.  
  37.     /**
  38.      * Method to render the view.
  39.      *
  40.      * @return  string  The rendered view.
  41.      *
  42.      * @since   3.1
  43.      */
  44.     public function render()
  45.     {
  46.         $this->items                = new stdClass;
  47.         $this->items->administrator $this->model->getInstalledlangsAdministrator();
  48.         $this->items->frontend      $this->model->getInstalledlangsFrontend();
  49.         $this->form                 $this->model->getForm();
  50.  
  51.         return parent::render();
  52.     }
  53. }

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