Source for file view.html.php
Documentation is available at view.html.php
* @subpackage com_wrapper
* @copyright Copyright (C) 2005 - 2013 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
* @subpackage com_wrapper
public function display($tpl =
null)
$params =
$app->getParams();
// because the application sets a default page title, we need to get it
// right from the menu item itself
$title =
$params->get('page_title', '');
$title =
$app->getCfg('sitename');
elseif ($app->getCfg('sitename_pagetitles', 0) ==
1)
$title =
JText::sprintf('JPAGETITLE', $app->getCfg('sitename'), $title);
elseif ($app->getCfg('sitename_pagetitles', 0) ==
2)
$title =
JText::sprintf('JPAGETITLE', $title, $app->getCfg('sitename'));
$this->document->setTitle($title);
if ($params->get('menu-meta_description'))
$this->document->setDescription($params->get('menu-meta_description'));
if ($params->get('menu-meta_keywords'))
$this->document->setMetadata('keywords', $params->get('menu-meta_keywords'));
if ($params->get('robots'))
$this->document->setMetadata('robots', $params->get('robots'));
if ($params->def('height_auto'))
$wrapper->load =
'onload="iFrameHeight()"';
$url =
$params->def('url', '');
if ($params->def('add_scheme', 1))
// adds 'http://' if none is set
if (substr($url, 0, 1) ==
'/')
// relative url in component. use server http_host.
$wrapper->url =
'http://'.
$_SERVER['HTTP_HOST'] .
$url;
$wrapper->url =
'http://'.
$url;
//Escape strings for HTML output
$this->params =
&$params;
$this->wrapper =
&$wrapper;
Documentation generated on Tue, 19 Nov 2013 15:16:52 +0100 by phpDocumentor 1.4.3