看板初始化提交

This commit is contained in:
zephyr
2026-06-01 21:23:12 -07:00
commit 54a842f4ab
2104 changed files with 241695 additions and 0 deletions
+54
View File
@@ -0,0 +1,54 @@
<?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());
}
}