Your IP : 216.73.216.158


Current Path : /home/megadansyp/www/components/com_jevents/views/default/helpers/
Upload File :
Current File : /home/megadansyp/www/components/com_jevents/views/default/helpers/defaultsetpagetitle.php

<?php

/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

use Joomla\CMS\Factory;

function DefaultSetPageTitle($view, $ev_title)
{

	// Get menu item id

	$newparams = Factory::getApplication('site')->getParams();
	// Because the application sets a default page title,
	// we need to get it from the menu item itself
	$menu = Factory::getApplication()->getMenu()->getActive();

	if (isset($menu->query["layout"]) && $menu->query["layout"] == "detail")
	{
		$newparams->def('page_heading', $newparams->get('page_title', $menu->title));
	}
	else
	{
		Factory::getDocument()->SetTitle($ev_title);
	}
}

?>