template::get_footer_html (public)
template::get_footer_html
Defined in packages/acs-templating/tcl/head-procs.tcl
Get footers as a chunk of html suitable for insertion into blank-master.adp Called only from blank-master.tcl
- Partial Call Graph (max 5 caller/called nodes):
- Testcases:
- No testcase defined.
Source code: # Generate the body footers variable ::template::footers set footer "" if {[info exists footers]} { foreach footer_list $footers { lassign $footer_list type src params if {$type eq "literal"} { append footer $src } else { set themed_template [template::themed_template $src] append footer [template::adp_include $themed_template $params] } } unset footers } return $footerXQL Not present: Generic, PostgreSQL, Oracle