ZenphotoCMS Forum
upgrading depreciated functions - 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: upgrading depreciated functions (/thread-11030.html)



upgrading depreciated functions - usartdude - 2013-05-02

How do I upgrade the depreciated functions:

getFirstImageURL
getTheme

for 1.4.4.4?




upgrading depreciated functions - acrylian - 2013-05-02

Actaully the notice tells you what to use instead. So in short:

getFirstImageURL:
$firstimage = $albumobject->getImage(); $firstimage->getImageLink();
getTheme is only needed if your theme has different personality to switch css files. This is now done via the css_head filter. See the default theme's functions.php for an example right at the beginning.