在Drupal 7中将特定主题应用于特定形式

时间:2012-03-20 15:25:54

标签: drupal-7 drupal-modules drupal-theming

我想在Drupal中为特定表单添加特定主题。例如,假设我想将一个名为menu_edit.tpl.php的模板应用于menu_edit_menu表单。如何才能做到这一点。可以使用Hook_theme()函数实现。任何人都可以提供有关如何执行此操作的代码段。对此问题的任何帮助将不胜感激。

1 个答案:

答案 0 :(得分:0)

您可以使用hook_theme

中的template键执行此操作
/**
* Implementation of hook_theme().
*/
function yourmodule_theme() {
  return array(
   'variables' => array(1) , 
   'template' =>  'my_template' , 
  ) ; 
}

在此示例中,您可以在同一模块目录中创建my_template.tpl.php

follow this tutorial for more details

祝你好运