You are here

function _webform_theme_grid in Webform 6.2

Same name and namespace in other branches
  1. 6.3 components/grid.inc \_webform_theme_grid()
  2. 7.4 components/grid.inc \_webform_theme_grid()
  3. 7.3 components/grid.inc \_webform_theme_grid()

Module specific instance of hook_theme().

File

components/grid.inc, line 233
Webform module grid component.

Code

function _webform_theme_grid() {
  return array(
    'webform_grid' => array(
      'arguments' => array(
        'grid_element' => NULL,
      ),
    ),
    'webform_mail_grid' => array(
      'arguments' => array(
        'data' => NULL,
        'component' => NULL,
      ),
    ),
  );
}