public static function DateHelper::dayOfWeekName in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/lib/Drupal/Core/Datetime/DateHelper.php \Drupal\Core\Datetime\DateHelper::dayOfWeekName()
Returns translated name of the day of week for a given date.
Parameters
mixed $date: (optional) A DrupalDateTime object or a date string. Defaults to NULL, which means use the current date.
string $abbr: (optional) Whether to return the abbreviated name for that day. Defaults to TRUE.
Return value
string The name of the day in the week for that date.
File
- core/
lib/ Drupal/ Core/ Datetime/ DateHelper.php, line 527 - Contains \Drupal\Core\Datetime\DateHelper.
Class
- DateHelper
- Defines Gregorian Calendar date values.
Namespace
Drupal\Core\DatetimeCode
public static function dayOfWeekName($date = NULL, $abbr = TRUE) {
if (!$date instanceof DrupalDateTime) {
$date = new DrupalDateTime($date);
}
$dow = self::dayOfWeek($date);
$days = $abbr ? self::weekDaysAbbr() : self::weekDays();
return $days[$dow];
}