根据白天的时间更改Drupal主题

根据白天的时间更改Drupal主题,drupal,drupal-6,themes,drupal-modules,Drupal,Drupal 6,Themes,Drupal Modules,我想写一个drupal模块,它将根据服务器的时间在两个主题之间切换 请说,我应该实现哪个钩子 我应该用吗 function hook_init(){ global $custom_theme; $custom_theme = (<condition> ? 'theme1' : 'theme2'); } 函数hook_init(){ 全球$custom_主题; $custom_theme=(?'theme1':'theme2'); } ? 谢谢。是的,这应该在您的模

我想写一个drupal模块,它将根据服务器的时间在两个主题之间切换

请说,我应该实现哪个钩子

我应该用吗

function hook_init(){
    global $custom_theme;
    $custom_theme = (<condition> ? 'theme1' : 'theme2');
}
函数hook_init(){
全球$custom_主题;
$custom_theme=(?'theme1':'theme2');
}
?


谢谢。

是的,这应该在您的模块中起作用。我已经在自己的一个模块中进行了测试,效果很好。

是的,在您的模块中应该可以。我已经在我自己的电脑上测试过了,效果很好