You are here

function webform_options_limit_theme in Webform 6.x

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

Implements hook_theme().

File

modules/webform_options_limit/webform_options_limit.module, line 30
Allows elements with options (i.e. select, checkboxes, and radios) to have option specific submission limits.

Code

function webform_options_limit_theme() {
  return [
    'webform_handler_options_limit_summary' => [
      'variables' => [
        'settings' => NULL,
        'handler' => [],
      ],
    ],
  ];
}