| Server IP : 198.244.165.102 / Your IP : 216.73.216.218 [ Web Server : nginx/1.24.0 System : Linux modovh-ub-01 6.8.0-138-generic #138-Ubuntu SMP PREEMPT_DYNAMIC Fri Jul 31 22:41:49 UTC 2026 x86_64 User : colleary ( 1011) PHP Version : 8.3.23 Disable Function : NONE Domains : 2 Domains MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/johnhoban/hold_html/components/com_wrapper/ |
Upload File : |
<?php
/**
* @version $Id: wrapper.php,v 1.6 2005/01/15 07:04:53 stingrey Exp $
* @package Mambo
* @subpackage Wrapper
* @copyright (C) 2000 - 2005 Miro International Pty Ltd
* @license http://www.gnu.org/copyleft/gpl.html GNU/GPL
* Mambo is Free Software
*/
/** ensure this file is being included by a parent file */
defined( '_VALID_MOS' ) or die( 'Direct Access to this location is not allowed.' );
/** load the html drawing class */
require_once( $mainframe->getPath( 'front_html' ) );
showWrap( $option );
function showWrap( $option ) {
global $database, $Itemid, $mainframe;
$menu =& new mosMenu( $database );
$menu->load( $Itemid );
$params =& new mosParameters( $menu->params );
$params->def( 'back_button', $mainframe->getCfg( 'back_button' ) );
$params->def( 'scrolling', 'auto' );
$params->def( 'page_title', '1' );
$params->def( 'pageclass_sfx', '' );
$params->def( 'header', $menu->name );
$params->def( 'height', '500' );
$params->def( 'height_auto', '1' );
$params->def( 'width', '100%' );
$params->def( 'add', '1' );
$url = $params->def( 'url', '' );
if ( $params->get( 'add' ) ) {
// adds 'http://' if none is set
if ( !strstr( $url, 'http' ) && !strstr( $url, 'https' ) ) {
$row->url = 'http://'. $url;
} else {
$row->url = $url;
}
} else {
$row->url = $url;
}
// auto height control
if ( $params->def( 'height_auto' ) ) {
$row->load = 'window.onload = iFrameHeight;';
} else {
$row->load = '';
}
$mainframe->SetPageTitle($menu->name);
HTML_wrapper::displayWrap( $row, $params, $menu );
}
?>