1 views_ui_base_views_wizard.php protected ViewsUiBaseViewsWizard::default_display_sorts($form, $form_state)

File

core/modules/views_ui/wizards/views_ui_base_views_wizard.php, line 744
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 default_display_sorts($form, $form_state) {
  $sorts = array();

  // Add any sorts provided by the plugin.
  if (isset($this->plugin['sorts'])) {
    foreach ($this->plugin['sorts'] as $name => $info) {
      $sorts[$name] = $info;
    }
  }

  // Add any sorts specified by the user when filling out the wizard.
  $sorts = array_merge($sorts, $this->default_display_sorts_user($form, $form_state));

  return $sorts;
}