| [ Index ] |
PHP Cross Reference of Joomla 2.5.4 DE |
[Summary view] [Print] [Text view]
1 <?php 2 /** 3 * @copyright Copyright (C) 2005 - 2012 Open Source Matters, Inc. All rights reserved. 4 * @license GNU General Public License version 2 or later; see LICENSE.txt 5 */ 6 7 // no direct access 8 defined('_JEXEC') or die; 9 10 include_once dirname(__FILE__).'/../default/view.php'; 11 12 /** 13 * Extension Manager Templates View 14 * 15 * @package Joomla.Administrator 16 * @subpackage com_installer 17 * @since 1.6 18 */ 19 class InstallerViewWarnings extends InstallerViewDefault 20 { 21 /** 22 * @since 1.6 23 */ 24 function display($tpl=null) 25 { 26 $items = $this->get('Items'); 27 $this->assignRef('messages', $items); 28 parent::display($tpl); 29 } 30 31 /** 32 * Add the page title and toolbar. 33 * 34 * @since 1.6 35 */ 36 protected function addToolbar() 37 { 38 parent::addToolbar(); 39 JToolBarHelper::help('JHELP_EXTENSIONS_EXTENSION_MANAGER_WARNINGS'); 40 } 41 }
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
| Generated: Tue Apr 3 11:40:28 2012 | Cross-referenced by PHPXref 0.7.1 |