@wuiPhpHtmlBodyBegin()

Start of the <body> section of the HTML document.

This macro start the <body> section and includes the standard top banner.

Example of using the macro:

<?php

@wuiPhpSetPageInfo("$Id: wuiphp.xml,v 1.4 2008/12/22 13:24:55 rwhalb Exp $","2006-08-26","NST File Upload")

?>
@wuiPhpHtmlHeadBegin()

@javascriptBegin()
function showAlert() {
  alert("Hello World!");
}
@javascriptEnd()

@wuiPhpHtmlHeadEnd()

@wuiPhpHtmlBodyBegin()

@p("Here is a paragraph of text to display.")

@wuiPhpHtmlBodyEnd()

Assuming the com.ccg.macros.at.All class is within your CLASSPATH and the config/wuiphp.at macros file has been generated (Hint: run make atmacros in the wui directory), a developer should be able to run the above example by copy/pasting from below:

[root@probe root]# java com.ccg.macros.at.All <<EOF
@include("config/wuiphp.at",,"d")

<?php

@wuiPhpSetPageInfo("$Id: wuiphp.xml,v 1.4 2008/12/22 13:24:55 rwhalb Exp $","2006-08-26","NST File Upload")

?>
@wuiPhpHtmlHeadBegin()

@javascriptBegin()
function showAlert() {
  alert("Hello World!");
}
@javascriptEnd()

@wuiPhpHtmlHeadEnd()

@wuiPhpHtmlBodyBegin()

@p("Here is a paragraph of text to display.")

@wuiPhpHtmlBodyEnd()

EOF

This macro is defined as:

 <body>
@wuiPhpHtmlBannerTop()