バブル モジュールで Drupal7 テーマを作成し、モジュール バブル内のフォルダー テンプレートにテンプレート bubble.tpl を追加しました。次のフックでは、テンプレート bubble.tpl を呼び出していくつかの変数を渡すことを想定しています。
function bubbles_theme($existing, $type, $theme, $path){
return array(
'bubbles' => array(
'variables' => array(
'name' => "test",
'description' => "test time being."
),
'template' => 'bubbles',
'path' => 'template'
)
);
}
template.php 前処理フックで呼び出します
$variables = array(
'name' => 1,
'description' => 2
);
$output = theme('bubbles',$variables);
$output は空です。私はテーマに慣れていないので、どこからデバッグを開始すればよいかわかりません。誰かが助けてくれたらうれしいです。