Iframe Macro

Version 9.1 by Thomas Mortagne on 2011/10/27 18:12

cogAllows you to add an iframe in the page content.
TypeDoc (Velocity Macro)
Category
Developed by

Thomas Eveilleau

Rating
0 Votes
LicenseUnknown

Description

Allows you to add an iframe in the page content.

Usage

#iframe("url" "name" "width" "height")

Parameters definition

NameOptionalAllowed valuesDefault valueDescription
URLnostringnoneURL of the website you want to display in your iframe
NameyesstringiframeName of the iframe
Widthyesint +px or percentage +%100%Width of the iframe
Heightyesint +px500pxHeight of the iframe

 

Example

#iframe("http://www.google.fr" "google" "" "")

Result

iframeresult.png

Installation

This a Velocity macro. Since it's not bundled by default you'll have to copy/paste the following code to use it:

#macro(iframe $url $name $width $height)
#if($name=="")
#set($name = "iframe")
#end
#if($width=="")
#set($width="100%")
#end
#if($height=="")
#set($height="500px")
#end
<iframe src="${url}" name="${name}" width="${width}" height="${height}"></iframe>
#end

Get Connected