| [ 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 * @since 1.5 6 */ 7 8 // no direct access 9 defined('_JEXEC') or die; 10 11 include_once dirname(__FILE__).'/../default/view.php'; 12 13 /** 14 * Extension Manager Install View 15 * 16 * @package Joomla.Administrator 17 * @subpackage com_installer 18 * @since 1.5 19 */ 20 class InstallerViewInstall extends InstallerViewDefault 21 { 22 /** 23 * @since 1.5 24 */ 25 function display($tpl=null) 26 { 27 $paths = new stdClass(); 28 $paths->first = ''; 29 $state = $this->get('state'); 30 31 $this->assignRef('paths', $paths); 32 $this->assignRef('state', $state); 33 34 parent::display($tpl); 35 } 36 37 /** 38 * Add the page title and toolbar. 39 * 40 * @since 1.6 41 */ 42 protected function addToolbar() 43 { 44 parent::addToolbar(); 45 JToolBarHelper::help('JHELP_EXTENSIONS_EXTENSION_MANAGER_INSTALL'); 46 } 47 }
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 |