You are here

function _views_get_arguments_default in Views (for Drupal 7) 5

Select box entries for argument defaults.

1 call to _views_get_arguments_default()
views_ui_add_argument in ./views_ui.module
Add all the info for a single argument into the form.

File

./views_ui.module, line 591

Code

function _views_get_arguments_default() {
  return array(
    1 => t('Return Page Not Found'),
    2 => t('Display All Values'),
    3 => t('Summary, unsorted'),
    4 => t('Summary, sorted ascending'),
    5 => t('Summary, sorted descending'),
    6 => t('Summary, sorted as view'),
    7 => t('Use Empty Text'),
  );
}