You are here

function tablefield_theme in TableField 7

Same name and namespace in other branches
  1. 6 tablefield.module \tablefield_theme()
  2. 7.3 tablefield.module \tablefield_theme()
  3. 7.2 tablefield.module \tablefield_theme()

Implements hook_theme().

File

./tablefield.module, line 621
This module provides a set of fields that can be used to store tabular data with a node. The implementation uses a custom CCK widget.

Code

function tablefield_theme() {
  return array(
    'tablefield_view' => array(
      'variables' => array(
        'header' => NULL,
        'rows' => NULL,
        'delta' => NULL,
      ),
    ),
  );
}