You are here

public function WebformViewsSelectHandler::render in Webform Views Select 7

Render this display.

Overrides views_plugin_display::render

File

./WebformViewsSelectHandler.inc, line 16
Contains WebformViewsSelectHandler.

Class

WebformViewsSelectHandler
The plugin that handles webform_views_select_handler.

Code

public function render() {
  $options = $this
    ->execute();
  return theme('select', array(
    'element' => array(
      '#options' => $options,
    ),
  ));
}