function webform_layout_theme in Webform Layout 7.2
Implement hook_theme();
File
- ./webform_layout.module, line 96 
- This module provides a layout container for webforms.
Code
function webform_layout_theme(&$element, $form_type, $form_id) {
  return array(
    'webform_layout_empty_layout_box' => array(
      'variables' => array(),
      'file' => 'layout_box.inc',
    ),
  );
}