Back to Language class

Method getWeekEnd

public string
getWeekEnd
()
Get the weekends days for this language.
Returns
  • string The weekend days of the week separated by a comma according to the language
Since
  • 3.2
Class: Language
Project: Joomla

Method getWeekEnd - Source code

/**
 * Get the weekends days for this language.
 *
 * @return  string  The weekend days of the week separated by a comma according to the language
 *
 * @since   3.2
 */
public function getWeekEnd()
{
    return $this->metadata['weekEnd'] ?? '0,6';
}