ZenphotoCMS Forum
Global object variables in template/functions.php - Printable Version

+- ZenphotoCMS Forum (https://forum.zenphoto.org)
+-- Forum: Support (https://forum.zenphoto.org/forum-1.html)
+--- Forum: General support (https://forum.zenphoto.org/forum-4.html)
+--- Thread: Global object variables in template/functions.php (/thread-8891.html)



Global object variables in template/functions.php - tunafish - 2011-07-21

I am making a new template and want to add custom template functions.
I can't access Global object variables from there, for example:

`function test() {

print_r($_zp_current_album);

}`

I think I have to include a file in functions.php but I am not sure which?




Global object variables in template/functions.php - tunafish - 2011-07-21

OK, nevermind, found I needed to define the object with global.

`function test() {

global $_zp_current_album;

print_r($_zp_current_album);

}`