Source for file view.html.php

Documentation is available at view.html.php

  1. <?php
  2. /**
  3.  * @package     Joomla.Administrator
  4.  * @subpackage  com_installer
  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. include_once __DIR__ . '/../default/view.php';
  13.  
  14. /**
  15.  * Extension Manager Install View
  16.  *
  17.  * @package     Joomla.Administrator
  18.  * @subpackage  com_installer
  19.  * @since       1.5
  20.  */
  21. {
  22.     /**
  23.      * Display the view
  24.      *
  25.      * @param   string  $tpl  Template
  26.      *
  27.      * @return  void 
  28.      *
  29.      * @since   1.5
  30.      */
  31.     public function display($tpl null)
  32.     {
  33.         $paths new stdClass;
  34.         $paths->first '';
  35.         $state $this->get('state');
  36.  
  37.         $this->paths &$paths;
  38.         $this->state &$state;
  39.  
  40.         $this->showJedAndWebInstaller JComponentHelper::getParams('com_installer')->get('show_jed_info'1);
  41.  
  42.         JPluginHelper::importPlugin('installer');
  43.  
  44.         $dispatcher JEventDispatcher::getInstance();
  45.         $dispatcher->trigger('onInstallerBeforeDisplay'array(&$this->showJedAndWebInstaller$this));
  46.  
  47.         parent::display($tpl);
  48.     }
  49.  
  50.     /**
  51.      * Add the page title and toolbar.
  52.      *
  53.      * @return  void 
  54.      *
  55.      * @since   1.6
  56.      */
  57.     protected function addToolbar()
  58.     {
  59.         parent::addToolbar();
  60.         JToolbarHelper::help('JHELP_EXTENSIONS_EXTENSION_MANAGER_INSTALL');
  61.     }
  62. }

Documentation generated on Tue, 19 Nov 2013 15:16:48 +0100 by phpDocumentor 1.4.3