You are here

function webform_share_theme_suggestions_html in Webform 6.x

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

Implements hook_theme_suggestions_HOOK().

File

modules/webform_share/webform_share.module, line 196
Allows webforms to be shared on other websites using an iframe.

Code

function webform_share_theme_suggestions_html(array $variables) {
  return WebformShareHelper::isPage() ? [
    'html__webform_share',
  ] : [];
}