template::add_footer (public)
template::add_footer [ -direction direction ] [ -src src ] \ [ -params params ] [ -html html ]
Defined in packages/acs-templating/tcl/head-procs.tcl
Add a footer include to the end of the document body. This function is used by site-wide services to add functionality to the end of a page. Examples include the developer support toolbar, acs-lang translation interface and the acs-templating WYSIWYG editor textarea place holder. If you are not implementing a site-wide service, you should not be using this function to add content to your page. You must supply either src or html.
- Switches:
- -direction (optional, defaults to
"outer"
)- whether the footer should be added as the outer most page content or the inner most
- -src (optional)
- the path to the include
- -params (optional)
- a list of name, value pairs to pass as parameter to the include
- -html (optional)
- literal html to include in the page. This parameter will be ignored if a values has been supplied for src.
- See Also:
- Partial Call Graph (max 5 caller/called nodes):
- Testcases:
- No testcase defined.
Source code: variable ::template::footers if {$src eq ""} { if {$html eq ""} { error "You must supply either -src or -html." } set values [list literal $html ""] } else { set values [list include $src $params] } if {[info exists footers]} { switch -- $direction { outer {lappend footers $values} inner {set footers [linsert $footers 0 $values]} default {error "unknown direction $direction"} } } else { set footers [list $values] }XQL Not present: Generic, PostgreSQL, Oracle