def( 'url', 'http://www.mambo-foundation.org' );
$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 = '';
}
?>