By jflesher on
Where are the Theme Settings Stored?
I'm trying to write a module that needs access to a given Theme's Settings; I can't find a function that works to return a Theme's Custom setting, so far.
Thanks
Where are the Theme Settings Stored?
I'm trying to write a module that needs access to a given Theme's Settings; I can't find a function that works to return a Theme's Custom setting, so far.
Thanks
Comments
use hook_theme_registry_alter
http://api.drupal.org/api/function/hook_theme_registry_alter/6
use hook_theme_registry_alter in your module ........ you can get all settings in $theme_registry argument........
Pragna J Bhalsod