* @license GNU General Public License version 2 or later; see LICENSE.txt */ namespace Joomla\Component\Joomlaupdate\Administrator\View\Update; use Joomla\CMS\Factory; use Joomla\CMS\Language\Text; use Joomla\CMS\MVC\View\HtmlView as BaseHtmlView; use Joomla\CMS\Toolbar\ToolbarHelper; // phpcs:disable PSR1.Files.SideEffects \defined('_JEXEC') or die; // phpcs:enable PSR1.Files.SideEffects /** * 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); } }