以编程方式更改活动 Drupal 主题的正确方法是什么?

发布于 2024-09-28 15:58:20 字数 35 浏览 2 评论 0原文

以编程方式更改活动 Drupal 主题的正确方法是什么?

What is the correct way to change the active Drupal theme programmatically?

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

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

发布评论

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

评论(1

谜泪 2024-10-05 15:58:20

编辑:这是一个更简单的示例。

无论主题设置如何,它都会使用 Garland。请注意,这也会覆盖管理主题设置。

function MODULENAME_init(){
    global $custom_theme;
    $custom_theme = 'garland';
}

编辑:全局更改。

如果您的意思是更改数据库中的主题设置而不仅仅是当前页面上的主题设置,则操作方法如下:

// Changes the theme to Garland
variable_set('theme_default', 'garland');

// Changes only the administration theme to Garland
variable_set('admin_theme', 'garland');

Edit: here is a simpler example.

It uses Garland regardless of the theme setting. Note that this overrides the admin theme setting too.

function MODULENAME_init(){
    global $custom_theme;
    $custom_theme = 'garland';
}

Edit: changing globally.

And if you meant changing the theme setting in the database instead of just on the current page, here is how:

// Changes the theme to Garland
variable_set('theme_default', 'garland');

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