2012-03-21 9 views

答えて

8

使用hook_theme()

<ul> 
    <? foreach ($items as $item): ?> 
    <li><?=$item?></li> 
    <? endfor; ?> 
</ul> 

おかげで、その後、テンプレート内から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')); 
あなたのモジュールで

関連する問題