You are here

public function views_content_plugin_display_panel_pane::uses_exposed_form_in_block in Chaos Tool Suite (ctools) 7

Check to see if the display can put the exposed form in a block.

By default, displays that do not have a path cannot disconnect the exposed form and put it in a block, because the form has no place to go and Views really wants the forms to go to a specific page.

Overrides views_plugin_display::uses_exposed_form_in_block

File

views_content/plugins/views/views_content_plugin_display_panel_pane.inc, line 422

Class

views_content_plugin_display_panel_pane
The plugin that handles a panel_pane.

Code

public function uses_exposed_form_in_block() {

  // We'll always allow the exposed form in a block, regardless of path.
  return TRUE;
}