You are here

function views_plugin_display::get_style_type in Views (for Drupal 7) 6.2

Same name and namespace in other branches
  1. 6.3 plugins/views_plugin_display.inc \views_plugin_display::get_style_type()
  2. 7.3 plugins/views_plugin_display.inc \views_plugin_display::get_style_type()

Displays can require a certain type of style plugin. By default, they will be 'normal'.

1 call to views_plugin_display::get_style_type()
views_plugin_display::options_form in plugins/views_plugin_display.inc
Provide the default form for setting options.
1 method overrides views_plugin_display::get_style_type()
views_plugin_display_feed::get_style_type in plugins/views_plugin_display_feed.inc
Displays can require a certain type of style plugin. By default, they will be 'normal'.

File

plugins/views_plugin_display.inc, line 1889
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 get_style_type() {
  return 'normal';
}