示例#1
0
function pagefooter()
{
    //global $HTTP_GET_VARS, $HTTP_POST_VARS, $HTTP_SERVER_VARS;
    global $USER, $USER_DATA, $ALBUM_SET, $CONFIG, $time_start, $query_stats, $queries;
    global $template_footer;
    $custom_footer = cpg_get_custom_include($CONFIG['custom_footer_path']);
    if ($CONFIG['debug_mode'] == 1 || $CONFIG['debug_mode'] == 2 && GALLERY_ADMIN_MODE) {
        cpg_debug_output();
    }
    $template_vars = array('{CUSTOM_FOOTER}' => $custom_footer, '{VANITY}' => defined('THEME_IS_XHTML10_TRANSITIONAL') && $CONFIG['vanity_block'] ? theme_vanity() : '', '{CREDITS}' => theme_credits());
    echo template_eval($template_footer, $template_vars);
}
示例#2
0
function pagefooter()
{
    global $HTTP_GET_VARS, $HTTP_POST_VARS, $HTTP_SERVER_VARS;
    global $USER, $ALBUM_SET, $CONFIG, $time_start, $query_stats;
    global $template_footer;
    if ($CONFIG['debug_mode'] == 1 || $CONFIG['debug_mode'] == 2 && GALLERY_ADMIN_MODE) {
        cpg_debug_output();
    }
    echo $template_footer;
    if (defined('CMS_INTEGRATION')) {
        $custom_footer = cms_pagefooter();
        echo $custom_footer;
    }
}
function pagefooter()
{
    //global $HTTP_GET_VARS, $HTTP_POST_VARS, $HTTP_SERVER_VARS;
    global $USER, $USER_DATA, $CONFIG, $time_start, $query_stats, $queries;
    global $template_footer;
    $custom_footer = cpg_get_custom_include($CONFIG['custom_footer_path']);
    if ($CONFIG['debug_mode'] == 1 || $CONFIG['debug_mode'] == 2 && GALLERY_ADMIN_MODE) {
        cpg_debug_output();
    }
    $template_vars = array('{GAL_NAME}' => $CONFIG['gallery_name'], '{GAL_DESCRIPTION}' => $CONFIG['gallery_description'], '{SYS_MENU}' => theme_main_menu('sys_menu'), '{SUB_MENU}' => theme_main_menu('sub_menu'), '{ADMIN_MENU}' => theme_admin_mode_menu(), '{CUSTOM_HEADER}' => $custom_header, '{JAVASCRIPT}' => theme_javascript_head(), '{CUSTOM_FOOTER}' => $custom_footer, '{VANITY}' => theme_vanity(), '{CREDITS}' => theme_credits());
    echo template_eval($template_footer, $template_vars);
}