Используйте hook_theme()
в пользовательском модуле, затем вызовите метод theme()
из вашего шаблона.
В вашем модуле:
mymodule_theme($existing, $type, $theme, $path) {
return array(
'my_theme_name' => array(
'template' => 'my_template_file_name', // without the .tpl.php extension
'variables' => array(), // to define default values for passed variables
)
);
}
В вашем шаблоне:
theme('my_theme_name', array('arg1' => 'val1', 'arg2' => 'val2'));