You are here

public static function DateHelper::weekDaysAbbr in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/Datetime/DateHelper.php \Drupal\Core\Datetime\DateHelper::weekDaysAbbr()

Constructs a translated array of week day abbreviations.

Parameters

bool $required: (optional) If FALSE, the returned array will include a blank value. Defaults to FALSE.

Return value

array An array of week day abbreviations

1 call to DateHelper::weekDaysAbbr()
DateHelper::dayOfWeekName in core/lib/Drupal/Core/Datetime/DateHelper.php
Returns translated name of the day of week for a given date.

File

core/lib/Drupal/Core/Datetime/DateHelper.php, line 188
Contains \Drupal\Core\Datetime\DateHelper.

Class

DateHelper
Defines Gregorian Calendar date values.

Namespace

Drupal\Core\Datetime

Code

public static function weekDaysAbbr($required = FALSE) {
  $weekdays = array(
    t('Sun', array(), array(
      'context' => 'Abbreviated weekday',
    )),
    t('Mon', array(), array(
      'context' => 'Abbreviated weekday',
    )),
    t('Tue', array(), array(
      'context' => 'Abbreviated weekday',
    )),
    t('Wed', array(), array(
      'context' => 'Abbreviated weekday',
    )),
    t('Thu', array(), array(
      'context' => 'Abbreviated weekday',
    )),
    t('Fri', array(), array(
      'context' => 'Abbreviated weekday',
    )),
    t('Sat', array(), array(
      'context' => 'Abbreviated weekday',
    )),
  );
  $none = array(
    '' => '',
  );
  return !$required ? $none + $weekdays : $weekdays;
}