开发者

Change the Drupal theme according to the day time

开发者 https://www.devze.com 2023-02-17 00:08 出处:网络
I want to write a drupal module which will toggle between 2 themes according to the time of the server.

I want to write a drupal module which will toggle between 2 themes according to the time of the server.

Please say, w开发者_如何学编程hich hook should I implement.

Should I use

function hook_init(){
    global $custom_theme;
    $custom_theme = (<condition> ? 'theme1' : 'theme2');
}

?

Thanks.


Yes that should work in your module. I have tested it in one of my own and it works fine.

0

精彩评论

暂无评论...
验证码 换一张
取 消