1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
<?php /** * @version $Id: mod_wrapper.php,v 1.1 2005/01/11 15:54:25 stingrey Exp $ * @package Mambo_4.5.2 * @copyright (C) 2000 - 2004 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.' );
global $_CONFIG, $_LANG;
$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 ( !strstr( $url, 'http' ) && !strstr( $url, 'https' ) ) { $url = 'http://'. $url; } }
// auto height control if ( $params->get( 'height_auto' ) ) { $load = "window.onload = iFrameHeight;\n"; } else { $load = ''; }
?> <script language="javascript" type="text/javascript"> <?php echo $load; ?> function iFrameHeight() { var h = 0; if ( !document.all ) { h = document.getElementById('blockrandom').contentDocument.height; document.getElementById('blockrandom').style.height = h + 60 + 'px'; } else if( document.all ) { h = document.frames('blockrandom').document.body.scrollHeight; document.all.blockrandom.style.height = h + 20 + 'px'; } } </script> <iframe id="blockrandom" 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( 'pageclass_sfx' ); ?>"> </iframe>
|