以编程方式更改活动的Drupal 7主题

Pra*_*V P 7 php drupal drupal-7 drupal-theming drupal-modules

以编程方式更改活动Drupal 7主题的正确方法是什么?我$custom_theme在Drupal 6中使用过,但它在Drupal 7中不起作用.

Cli*_*ive 8

你可以使用hook_custom_theme():

function mymodule_custom_theme() {
  if ($some_condition_is_true) {
    return 'my_theme';
  }
}
Run Code Online (Sandbox Code Playgroud)

如果您需要根据路径选择,那么最好的方法是覆盖theme callback特定菜单路由器项目.请看这里的例子.