You are here

public function views_plugin_display::use_more_open_new_window in Views (for Drupal 7) 7.3

Should the enabled display more link being opened in an new window?

1 call to views_plugin_display::use_more_open_new_window()
views_plugin_display::render_more_link in plugins/views_plugin_display.inc
Render the 'more' link.

File

plugins/views_plugin_display.inc, line 389
Definition of views_plugin_display.

Class

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

Code

public function use_more_open_new_window() {
  if (!empty($this->definition['use more'])) {
    return $this
      ->get_option('open_new_window');
  }
  return FALSE;
}