You are here

function tablefield_theme in TableField 7.2

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

Implements hook_theme().

File

./tablefield.module, line 1356
Provides a set of fields that can be used to store tabular data with a node.

Code

function tablefield_theme() {
  return array(
    'tablefield_view' => array(
      'variables' => array(
        'caption' => NULL,
        'header' => NULL,
        'rows' => NULL,
        'export' => NULL,
        'delta' => NULL,
        'entity_type' => NULL,
        'entity_id' => NULL,
        'field_name' => NULL,
        'langcode' => NULL,
        'formatter' => NULL,
        'sticky' => NULL,
        'attributes' => array(),
      ),
    ),
  );
}