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 Templates View
  16.  *
  17.  * @package     Joomla.Administrator
  18.  * @subpackage  com_installer
  19.  * @since       1.6
  20.  */
  21. {
  22.     /**
  23.      * Display the view
  24.      *
  25.      * @param   string  $tpl  Template
  26.      *
  27.      * @return  void 
  28.      *
  29.      * @since   1.6
  30.      */
  31.     public function display($tpl null)
  32.     {
  33.         $items $this->get('Items');
  34.         $this->messages &$items;
  35.         parent::display($tpl);
  36.     }
  37.  
  38.     /**
  39.      * Add the page title and toolbar.
  40.      *
  41.      * @return  void 
  42.      *
  43.      * @since   1.6
  44.      */
  45.     protected function addToolbar()
  46.     {
  47.         parent::addToolbar();
  48.         JToolbarHelper::help('JHELP_EXTENSIONS_EXTENSION_MANAGER_WARNINGS');
  49.     }
  50. }

Documentation generated on Tue, 19 Nov 2013 15:18:00 +0100 by phpDocumentor 1.4.3