标签: drupal drupal-6 themes drupal-modules
我想写一个drupal模块,它将根据服务器的时间在两个主题之间切换。
请说明,我应该实施哪个钩子。
我应该使用
function hook_init(){ global $custom_theme; $custom_theme = (<condition> ? 'theme1' : 'theme2'); }
感谢。
答案 0 :(得分:1)
是的,应该适用于您的模块。我已经用自己的一个测试了它,它运行正常。