This repository has been archived on 2024-11-28. You can view files and clone it, but cannot push or open issues or pull requests.
MatritumCantat_Web/www/modules/mod_wrapper.php

76 lines
2.3 KiB
PHP
Raw Permalink Normal View History

<?php
/**
* @version $Id: mod_wrapper.php 5752 2006-11-13 00:17:30Z friesengeist $
* @package Joomla_1.0.0
* @copyright Copyright (C) 2005 Open Source Matters. All rights reserved.
* @license http://www.gnu.org/copyleft/gpl.html GNU/GPL, see LICENSE.php
* Joomla! is free software. This version may have been modified pursuant
* to the GNU General Public License, and as distributed it includes or
* is derivative of works licensed under the GNU General Public License or
* other free or open source software licenses.
* See COPYRIGHT.php for copyright notices and details.
*/
// no direct access
defined( '_VALID_MOS' ) or die( 'Restricted access' );
global $mod_wrapper_count;
$params->def( 'url', '' );
$params->def( 'scrolling', 'auto' );
$params->def( 'height', '200' );
$params->def( 'height_auto', '0' );
$params->def( 'width', '100%' );
$params->def( 'add', '1' );
$url = $params->get( 'url' );
if ( $params->get( 'add' ) ) {
// adds 'http://' if none is set
if ( substr( $url, 0, 1 ) == '/' ) {
// relative url in component. use server http_host.
$url = 'http://'. $_SERVER['HTTP_HOST'] . $url;
} elseif ( !strstr( $url, 'http' ) && !strstr( $url, 'https' ) ) {
$url = 'http://'. $url;
} else {
$url = $url;
}
}
// Create a unique ID for the IFrame, output the javascript function only once
if (!isset( $mod_wrapper_count )) {
$mod_wrapper_count = 0;
?>
<script language="javascript" type="text/javascript">
function iFrameHeightX( iFrameId ) {
var h = 0;
if ( !document.all ) {
h = document.getElementById(iFrameId).contentDocument.height;
document.getElementById(iFrameId).style.height = h + 60 + 'px';
} else if( document.all ) {
h = document.frames(iFrameId).document.body.scrollHeight;
document.all[iFrameId].style.height = h + 20 + 'px';
}
}
</script>
<?php
}
// auto height control
if ( $params->def( 'height_auto' ) ) {
$load = 'onload="iFrameHeightX(\'blockrandom' . $mod_wrapper_count . '\')" ';
} else {
$load = '';
}
?>
<iframe
<?php echo $load; ?>
id="blockrandom<?php echo $mod_wrapper_count++; ?>"
src="<?php echo $url; ?>"
width="<?php echo $params->get( 'width' ); ?>"
height="<?php echo $params->get( 'height' ); ?>"
scrolling="<?php echo $params->get( 'scrolling' ); ?>"
align="top"
frameborder="0"
class="wrapper<?php echo $params->get( 'moduleclass_sfx' ); ?>">
<?php echo _CMN_IFRAMES; ?>
</iframe>