<%-- __________________________________________________________________________________________ Dreamweaver puts include to this file just before (for templates) It includes code (html, javascript or jsp) needed for any plugins used on the page. The plugin html/jsp included in the can define a class level String variable that can be checked e.g. <%! String "photo_gallery"; %> The existance of these class level String variables is then checked by jsp code below using the "isRevizePluginActive(...)" class level method which is defined in the via the associated include: /plugins/setup/setup_template_before_endhead.jsp Some plugin code (e.g. google_analytics) is included based on setting in webspace_config __________________________________________________________________________________________ --%> <% // google_analytics plugin rz.content = rz.webspace_config.get("google_analytics")+""; if (rz.content.length() > 0 && rz.content.indexOf("null") == -1) { %> <% } //end google_analytics // include photo_gallery plugin if active if (isRevizePluginActive("revize_photo_gallery")) { %> <%@ include file="/plugins/photo_gallery/photo_gallery.before_endbody.template_include.jsp" %><% } //end photo_gallery %>