根据白天时间更改 Drupal 主题
我想编写一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,这应该在你的模块中工作。我已经在自己的一台上测试过了,效果很好。
Yes that should work in your module. I have tested it in one of my own and it works fine.