You are here

function views_natural_sort_days_of_the_week_get_default_days in Views Natural Sort 7.2

The default days of the week.

3 calls to views_natural_sort_days_of_the_week_get_default_days()
ViewsNaturalSortDaysOfTheWeekTest::testDefaultDayReplace in ./views_natural_sort.test
Test tranformation functionality of the days of the week transformation.
views_natural_sort_days_of_the_week_get_acceptable_day_abbreviations in ./views_natural_sort.inc
Gets all the configured abbreviations for a certain day of the week.
views_natural_sort_days_of_the_week_sort_days in ./views_natural_sort.inc
Simply convert days of the week over to numbers.

File

./views_natural_sort.inc, line 201
The Views Natural Sort module include file.

Code

function views_natural_sort_days_of_the_week_get_default_days() {
  return array(
    "Sunday",
    "Monday",
    "Tuesday",
    "Wednesday",
    "Thursday",
    "Friday",
    "Saturday",
  );
}