1 views_ui_base_views_wizard.php protected ViewsUiBaseViewsWizard::row_style_options($type)

Add possible row style options.

Per default use fields with base field.

File

core/modules/views_ui/wizards/views_ui_base_views_wizard.php, line 351
Provides the interface and base class for Views Wizard plugins.

Class

ViewsUiBaseViewsWizard
A very generic Views Wizard class - can be constructed for any base table.

Code

protected function row_style_options($type) {
  $data = views_fetch_data($this->base_table);
  // Get all available row plugins by default.
  $options = views_fetch_plugin_names('row', 'normal', array($this->base_table));
  return $options;
}