私はdrupalテーブルを作成していて、drupal_theme()を検索し、次のコードでテーブルを作成するためのルールに従おうとしました。
$data = array('value', 'values');
$header = array ($data);
$rows = array(
// Simple row
array(
'Cell 1', 'Cell 2', 'Cell 3'
),
// Row with attributes on the row and some of its cells.
array(
'data' => array('Cell 1', array('data' => 'Cell 2', 'colspan' => 2)),
'class' => 'funky'
)
);
//$output = theme('table', $header, $rows, $attributes = array(),
//$caption = NULL);
$table_t = theme_table($header, $rows, $attributes = array(), $caption = NULL);
//return $output;
return $table_t;
ただし、テーブルには、期待どおりの行ヘッダーと列ヘッダーが含まれていません。どうしたの??
スクリーンショット: