1 views_plugin_display.inc views_plugin_display::view_special_blocks($type)

Render any special blocks provided for this display.

File

core/modules/views/plugins/views_plugin_display.inc, line 2827
Contains the base display plugin.

Class

views_plugin_display
The default display plugin handler. Display plugins handle options and basic mechanisms for different output methods.

Code

function view_special_blocks($type) {
  if ($type == '-exp') {
    // avoid interfering with the admin forms.
    if (arg(0) == 'admin' && arg(1) == 'structure' && arg(2) == 'views') {
      return;
    }
    $this->view->init_handlers();

    if ($this->uses_exposed() && $this->get_option('exposed_block')) {
      $exposed_form = $this->get_plugin('exposed_form');
      return array(
        'content' => $exposed_form->render_exposed_form(TRUE),
      );
    }
  }
}