根据白天时间更改 Drupal 主题

发布于 2024-10-21 23:19:45 字数 242 浏览 3 评论 0原文

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

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

我应该使用吗

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

谢谢。

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

Please say, which hook should I implement.

Should I use

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

?

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

孤独陪着我 2024-10-28 23:19:45

是的,这应该在你的模块中工作。我已经在自己的一台上测试过了,效果很好。

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文