1

我正在制作一个 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;

但是,该表不包含我预期的行和列标题。怎么了??

截屏: 在此处输入图像描述

4

1 回答 1

1

我不确定这是否会有所帮助,但这是我在我的一个模块中使用的表头的代码。

  $header = array(
    array('data' => t('One')),
    array('data' => t('Two')),
    array('data' => t('Three')),
    array('data' => t('Four')),
  );

看看这是否适合你。

另外,theme_table($header, $rows, $attributes = array(), $caption = NULL)也可以theme_table($header, $rows)

于 2013-02-15T23:00:45.020 回答