Where to get a name of the current theme?
$theme class does not have name property There is a list of themes used in the admin module, but it seems to be not present in regular mode
You can name a theme in the theme.info file, if that's what you mean.
Hm. I don't think thats available. Where do you want to use it? I can work something up for you. --- Problems? Check gallery3/var/logs bugs/feature req's | upgrade to the latest code | use git | help! vote!
As an example, I want to incorporate name of the theme in the footer I could hardcode it, or which would be more conveniently, read it programmatically
Ok, well in the short term here's a way to do it:
<? $theme_id = module::get_var("gallery", "active_site_theme"); $ini = parse_ini_file(THEMEPATH . "$theme_id/theme.info"); print $ini["name"]; ?>
--- Problems? Check gallery3/var/logs bugs/feature req's | upgrade to the latest code | use git | help! vote!
That works. thanks. Probably would be nice to expose all theme related info as part of $theme declaration
I agree. Would you please file a ticket for that? Thanks! --- Problems? Check gallery3/var/logs bugs/feature req's | upgrade to the latest code | use git | help! vote!
Added - https://sourceforge.net/apps/trac/gallery/ticket/541
Posts: 78
You can name a theme in the theme.info file, if that's what you mean.
Posts: 7994
Hm. I don't think thats available. Where do you want to use it? I can work something up for you.
---
Problems? Check gallery3/var/logs
bugs/feature req's | upgrade to the latest code | use git | help! vote!
Posts: 2466
As an example, I want to incorporate name of the theme in the footer
I could hardcode it, or which would be more conveniently, read it programmatically
Posts: 7994
Ok, well in the short term here's a way to do it:
---
Problems? Check gallery3/var/logs
bugs/feature req's | upgrade to the latest code | use git | help! vote!
Posts: 2466
That works. thanks.
Probably would be nice to expose all theme related info as part of $theme declaration
Posts: 7994
I agree. Would you please file a ticket for that? Thanks!
---
Problems? Check gallery3/var/logs
bugs/feature req's | upgrade to the latest code | use git | help! vote!
Posts: 2466
Added - https://sourceforge.net/apps/trac/gallery/ticket/541