You are here

function cck_table_theme in CCK Table Field 6

Implementation of hook_theme().

File

./cck_table.module, line 20
Defines a field type that outputs data in a table.

Code

function cck_table_theme() {
  return array(
    'cck_table' => array(
      'arguments' => array(
        'element' => NULL,
      ),
    ),
    'cck_table_formatter_first_row_header' => array(
      'arguments' => array(
        'element' => NULL,
      ),
      'function' => 'theme_cck_table_formatter',
    ),
    'cck_table_formatter_without_header' => array(
      'arguments' => array(
        'element' => NULL,
      ),
      'function' => 'theme_cck_table_formatter',
    ),
  );
}