Example #1
0
function html_page_bottom1a($p_file = null)
{
    if (null === $p_file) {
        $p_file = basename($_SERVER['PHP_SELF']);
    }
    html_bottom_banner();
    html_footer($p_file);
    html_body_end();
    html_end();
}
Example #2
0
/**
 * Print the part of the page that comes below the page content but leave off
 * the menu.  This is used during the login process and other times when the
 * user may not be authenticated.
 * @param string $p_file Should always be the __FILE__ variable.
 * @return void
 */
function html_page_bottom1a($p_file = null)
{
    if (null === $p_file) {
        $p_file = basename($_SERVER['SCRIPT_NAME']);
    }
    error_print_delayed();
    html_bottom_banner();
    html_footer();
    html_body_end();
    html_end();
}
Example #3
0
/**
 * Print the part of the page that comes below the page content but leave off
 *  the menu.  This is used during the login process and other times when the
 *  user may not be authenticated.
 * @param string $p_file should always be the __FILE__ variable.
 * @return null
 */
function html_page_bottom1a($p_file = null)
{
    if (null === $p_file) {
        $p_file = basename($_SERVER['SCRIPT_NAME']);
    }
    //	echo "###.html_bottom_banner ";
    html_bottom_banner();
    //	echo "###.html_footer ";
    html_footer();
    //	echo "###.html_body_end ";
    html_body_end();
    //	echo "###.html_end ";
    html_end();
}
Example #4
0
/**
 * Print the part of the page that comes below the page content but leave off
 * the menu.  This is used during the login process and other times when the
 * user may not be authenticated.
 * @return void
 */
function html_page_bottom1a()
{
    error_print_delayed();
    html_bottom_banner();
    html_footer();
    html_body_end();
    html_end();
}
Example #5
0
function html_page_bottom1a($p_file = null)
{
    if (!php_version_at_least('4.1.0')) {
        global $_SERVER;
    }
    if (null === $p_file) {
        $p_file = basename($_SERVER['PHP_SELF']);
    }
    html_bottom_banner();
    html_footer($p_file);
    html_body_end();
    html_end();
}