Files
kanboard/app/Model/TimezoneModel.php
T

55 lines
1.1 KiB
PHP
Raw Normal View History

2026-06-01 21:23:12 -07:00
<?php
namespace Kanboard\Model;
use Kanboard\Core\Base;
/**
* Class Timezone
*
* @package Kanboard\Model
* @author Frederic Guillot
*/
class TimezoneModel extends Base
{
/**
* Get available timezones
*
* @access public
* @param boolean $prepend Prepend a default value
* @return array
*/
public function getTimezones($prepend = false)
{
$timezones = timezone_identifiers_list();
$listing = array_combine(array_values($timezones), $timezones);
if ($prepend) {
return array('' => t('Application default')) + $listing;
}
return $listing;
}
/**
* Get current timezone
*
* @access public
* @return string
*/
public function getCurrentTimezone()
{
return $this->userSession->getTimezone() ?: $this->configModel->get('application_timezone', 'UTC');
}
/**
* Set timezone
*
* @access public
*/
public function setCurrentTimezone()
{
date_default_timezone_set($this->getCurrentTimezone());
}
}