芝麻web文件管理V1.00
编辑当前文件:/home2/sdektunc/.trash/administrator/components/com_joomlaupdate/src/View/Update/HtmlView.php
* @license GNU General Public License version 2 or later; see LICENSE.txt */ namespace Joomla\Component\Joomlaupdate\Administrator\View\Update; \defined('_JEXEC') or die; use Joomla\CMS\Factory; use Joomla\CMS\Language\Text; use Joomla\CMS\MVC\View\HtmlView as BaseHtmlView; use Joomla\CMS\Toolbar\ToolbarHelper; /** * Joomla! Update's Update View * * @since 2.5.4 */ class HtmlView extends BaseHtmlView { /** * Renders the view. * * @param string $tpl Template name. * * @return void */ public function display($tpl = null) { Factory::getApplication()->input->set('hidemainmenu', true); // Set the toolbar information. ToolbarHelper::title(Text::_('COM_JOOMLAUPDATE_OVERVIEW'), 'sync install'); // Render the view. parent::display($tpl); } }