coppermine-gallery.com/forum

Support => cpg1.4.x Support => Older/other versions => cpg1.4 themes/skins/templates => Topic started by: Jeremy Rasmussen on August 18, 2007, 09:45:29 PM

Title: Custom {TOKEN}s?
Post by: Jeremy Rasmussen on August 18, 2007, 09:45:29 PM
I've been trying to figure out how to make a custom {TOKEN}, I've found plenty of posts to add buttons to the menus but I don't want to add buttons.  Can someone point me in the right direction or post an example of the code I should add to template.php?

Thanks!
Title: Re: Custom {TOKEN}s?
Post by: Nibbler on August 18, 2007, 10:10:47 PM
Depends where you add the tokens. There is no such file as template.php.
Title: Re: Custom {TOKEN}s?
Post by: Jeremy Rasmussen on August 18, 2007, 10:48:35 PM
My mistake, theme.php.

I imagine that I just want to add above {GALLERY}, I have see someone comment that you have to code differently when you add "south" of the {GALLERY}.  Lets just stick with above for now.
Title: Re: Custom {TOKEN}s?
Post by: Nibbler on August 18, 2007, 10:55:33 PM
To do that, copy the pageheader function from the sample theme to your theme.php and add in a new '{TOKEN}' => 'replacement' pair.
Title: Re: Custom {TOKEN}s?
Post by: Elwood J. Blues on August 23, 2007, 08:41:12 AM
Hello Jeremy !

I give a solution in French Support (http://forum.coppermine-gallery.net/index.php?board=38.0) section...
[add by PYAP] http://forum.coppermine-gallery.net/index.php?topic=46175.msg220638#msg220638 [/add]


theme.php

function example()
{

$retour = "";
           $retour .=  "Hello world !";
           return $retour;


}


// Function for writing a pageheader
function pageheader($section, $meta = '')
{
    global $CONFIG, $THEME_DIR;
    global $template_header, $lang_charset, $lang_text_dir;

    $custom_header = cpg_get_custom_include($CONFIG['custom_header_path']);

        $charset = ($CONFIG['charset'] == 'language file') ? $lang_charset : $CONFIG['charset'];

    header('P3P: CP="CAO DSP COR CURa ADMa DEVa OUR IND PHY ONL UNI COM NAV INT DEM PRE"');
        header("Content-Type: text/html; charset=$charset");
    user_save_profile();

    $template_vars = array('{LANG_DIR}' => $lang_text_dir,
        '{TITLE}' => $CONFIG['gallery_name'] . ' - ' . strip_tags(bb_decode($section)),
        '{CHARSET}' => $charset,
        '{META}' => $meta,
        '{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,
'{EXAMPLE}' => example(),
        );

    echo template_eval($template_header, $template_vars);
}


I think that help you...

Sorry for my English...
Title: Re: Custom {TOKEN}s?
Post by: Jeremy Rasmussen on August 28, 2007, 02:05:14 AM
Great, Thanks for the help!  ;D