You are here

function webform_cards_theme in Webform 6.x

Same name and namespace in other branches
  1. 8.5 modules/webform_cards/webform_cards.module \webform_cards_theme()

Implements hook_theme().

File

modules/webform_cards/webform_cards.module, line 564
Provides a 'Card' container element for clientside multistep form pagination.

Code

function webform_cards_theme() {
  $info = [
    'webform_card' => [
      'render element' => 'element',
    ],
  ];
  return $info;
}