2018-01-25 01:47:33 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2022-01-02 07:27:47 +00:00
|
|
|
* @copyright Copyright (C) 2010-2022, the Friendica project
|
2020-02-09 15:18:46 +00:00
|
|
|
*
|
|
|
|
* @license GNU AGPL version 3 or any later version
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*
|
2018-01-25 01:47:33 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Friendica\Util;
|
|
|
|
|
|
|
|
use DateTime;
|
|
|
|
use DateTimeZone;
|
2018-10-31 14:35:50 +00:00
|
|
|
use Friendica\Core\Renderer;
|
2018-10-21 05:53:47 +00:00
|
|
|
use Friendica\Database\DBA;
|
2020-01-18 21:07:07 +00:00
|
|
|
use Friendica\DI;
|
2018-01-25 01:47:33 +00:00
|
|
|
|
|
|
|
/**
|
2020-01-19 06:05:23 +00:00
|
|
|
* Temporal class
|
2018-01-25 01:47:33 +00:00
|
|
|
*/
|
|
|
|
class Temporal
|
|
|
|
{
|
|
|
|
/**
|
2020-01-19 06:05:23 +00:00
|
|
|
* Two-level sort for timezones.
|
2018-01-25 01:47:33 +00:00
|
|
|
*
|
|
|
|
* @param string $a
|
|
|
|
* @param string $b
|
2022-08-18 20:05:00 +00:00
|
|
|
*
|
2018-01-25 01:47:33 +00:00
|
|
|
* @return int
|
|
|
|
*/
|
2022-08-18 20:05:00 +00:00
|
|
|
private static function timezoneCompareCallback(string $a, string $b): int
|
2018-01-25 01:47:33 +00:00
|
|
|
{
|
|
|
|
if (strstr($a, '/') && strstr($b, '/')) {
|
2020-01-18 19:52:34 +00:00
|
|
|
if (DI::l10n()->t($a) == DI::l10n()->t($b)) {
|
2018-01-25 01:47:33 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2020-01-18 19:52:34 +00:00
|
|
|
return (DI::l10n()->t($a) < DI::l10n()->t($b)) ? -1 : 1;
|
2018-01-25 01:47:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (strstr($a, '/')) {
|
|
|
|
return -1;
|
|
|
|
} elseif (strstr($b, '/')) {
|
|
|
|
return 1;
|
2020-01-18 19:52:34 +00:00
|
|
|
} elseif (DI::l10n()->t($a) == DI::l10n()->t($b)) {
|
2018-01-25 01:47:33 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2020-01-18 19:52:34 +00:00
|
|
|
return (DI::l10n()->t($a) < DI::l10n()->t($b)) ? -1 : 1;
|
2018-01-25 01:47:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2020-01-19 06:05:23 +00:00
|
|
|
* Emit a timezone selector grouped (primarily) by continent
|
2018-01-25 01:47:33 +00:00
|
|
|
*
|
|
|
|
* @param string $current Timezone
|
2022-08-18 20:05:00 +00:00
|
|
|
*
|
2018-01-25 01:47:33 +00:00
|
|
|
* @return string Parsed HTML output
|
|
|
|
*/
|
2022-08-18 20:05:00 +00:00
|
|
|
public static function getTimezoneSelect(string $current = 'America/Los_Angeles'): string
|
2018-01-25 01:47:33 +00:00
|
|
|
{
|
|
|
|
$timezone_identifiers = DateTimeZone::listIdentifiers();
|
|
|
|
|
|
|
|
$o = '<select id="timezone_select" name="timezone">';
|
|
|
|
|
2018-04-23 04:03:27 +00:00
|
|
|
usort($timezone_identifiers, [__CLASS__, 'timezoneCompareCallback']);
|
2018-01-25 01:47:33 +00:00
|
|
|
$continent = '';
|
|
|
|
foreach ($timezone_identifiers as $value) {
|
|
|
|
$ex = explode("/", $value);
|
|
|
|
if (count($ex) > 1) {
|
|
|
|
if ($ex[0] != $continent) {
|
|
|
|
if ($continent != '') {
|
|
|
|
$o .= '</optgroup>';
|
|
|
|
}
|
|
|
|
$continent = $ex[0];
|
2020-01-18 19:52:34 +00:00
|
|
|
$o .= '<optgroup label="' . DI::l10n()->t($continent) . '">';
|
2018-01-25 01:47:33 +00:00
|
|
|
}
|
|
|
|
if (count($ex) > 2) {
|
|
|
|
$city = substr($value, strpos($value, '/') + 1);
|
|
|
|
} else {
|
|
|
|
$city = $ex[1];
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$city = $ex[0];
|
2020-01-18 19:52:34 +00:00
|
|
|
if ($continent != DI::l10n()->t('Miscellaneous')) {
|
2018-01-25 01:47:33 +00:00
|
|
|
$o .= '</optgroup>';
|
2020-01-18 19:52:34 +00:00
|
|
|
$continent = DI::l10n()->t('Miscellaneous');
|
|
|
|
$o .= '<optgroup label="' . DI::l10n()->t($continent) . '">';
|
2018-01-25 01:47:33 +00:00
|
|
|
}
|
|
|
|
}
|
2020-01-18 19:52:34 +00:00
|
|
|
$city = str_replace('_', ' ', DI::l10n()->t($city));
|
2018-01-25 01:47:33 +00:00
|
|
|
$selected = (($value == $current) ? " selected=\"selected\" " : "");
|
|
|
|
$o .= "<option value=\"$value\" $selected >$city</option>";
|
|
|
|
}
|
|
|
|
$o .= '</optgroup></select>';
|
|
|
|
return $o;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2020-01-19 06:05:23 +00:00
|
|
|
* Generating a Timezone selector
|
2018-01-25 01:47:33 +00:00
|
|
|
*
|
|
|
|
* Return a select using 'field_select_raw' template, with timezones
|
|
|
|
* grouped (primarily) by continent
|
|
|
|
* arguments follow convention as other field_* template array:
|
|
|
|
* 'name', 'label', $value, 'help'
|
|
|
|
*
|
2019-01-06 21:06:53 +00:00
|
|
|
* @param string $name Name of the selector
|
|
|
|
* @param string $label Label for the selector
|
2018-01-25 01:47:33 +00:00
|
|
|
* @param string $current Timezone
|
2019-01-06 21:06:53 +00:00
|
|
|
* @param string $help Help text
|
2018-01-25 01:47:33 +00:00
|
|
|
*
|
|
|
|
* @return string Parsed HTML
|
2019-01-06 21:06:53 +00:00
|
|
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
2018-01-25 01:47:33 +00:00
|
|
|
*/
|
2022-08-18 20:05:00 +00:00
|
|
|
public static function getTimezoneField(string $name = 'timezone', string $label = '', string $current = 'America/Los_Angeles', string $help = ''): string
|
2018-01-25 01:47:33 +00:00
|
|
|
{
|
2018-01-26 12:29:32 +00:00
|
|
|
$options = self::getTimezoneSelect($current);
|
2018-01-25 01:47:33 +00:00
|
|
|
$options = str_replace('<select id="timezone_select" name="timezone">', '', $options);
|
|
|
|
$options = str_replace('</select>', '', $options);
|
|
|
|
|
2018-10-31 14:44:06 +00:00
|
|
|
$tpl = Renderer::getMarkupTemplate('field_select_raw.tpl');
|
2018-10-31 14:35:50 +00:00
|
|
|
return Renderer::replaceMacros($tpl, [
|
2018-01-25 01:47:33 +00:00
|
|
|
'$field' => [$name, $label, $current, $help, $options],
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2020-01-19 06:05:23 +00:00
|
|
|
* Wrapper for date selector, tailored for use in birthday fields.
|
2018-01-25 01:47:33 +00:00
|
|
|
*
|
|
|
|
* @param string $dob Date of Birth
|
2019-09-21 09:15:52 +00:00
|
|
|
* @param string $timezone
|
2022-08-18 20:05:00 +00:00
|
|
|
*
|
2018-01-25 01:47:33 +00:00
|
|
|
* @return string Formatted HTML
|
2019-09-21 09:15:52 +00:00
|
|
|
* @throws \Exception
|
2018-01-25 01:47:33 +00:00
|
|
|
*/
|
2022-08-18 20:05:00 +00:00
|
|
|
public static function getDateofBirthField(string $dob, string $timezone = 'UTC'): string
|
2018-01-25 01:47:33 +00:00
|
|
|
{
|
|
|
|
list($year, $month, $day) = sscanf($dob, '%4d-%2d-%2d');
|
|
|
|
|
|
|
|
if ($dob < '0000-01-01') {
|
|
|
|
$value = '';
|
2020-01-16 03:35:30 +00:00
|
|
|
$age = 0;
|
|
|
|
} elseif ($dob < '0001-00-00') {
|
|
|
|
$value = substr($dob, 5);
|
|
|
|
$age = 0;
|
2018-01-25 01:47:33 +00:00
|
|
|
} else {
|
2020-01-16 03:35:30 +00:00
|
|
|
$value = DateTimeFormat::utc($dob, 'Y-m-d');
|
|
|
|
$age = self::getAgeByTimezone($value, $timezone);
|
2018-01-25 01:47:33 +00:00
|
|
|
}
|
|
|
|
|
2018-10-31 14:44:06 +00:00
|
|
|
$tpl = Renderer::getMarkupTemplate("field_input.tpl");
|
2018-10-31 14:35:50 +00:00
|
|
|
$o = Renderer::replaceMacros($tpl,
|
2018-01-25 01:47:33 +00:00
|
|
|
[
|
|
|
|
'$field' => [
|
|
|
|
'dob',
|
2020-01-18 19:52:34 +00:00
|
|
|
DI::l10n()->t('Birthday:'),
|
2018-01-25 01:47:33 +00:00
|
|
|
$value,
|
2020-01-16 03:35:30 +00:00
|
|
|
intval($age) > 0 ? DI::l10n()->t('Age: ') . DI::l10n()->tt('%d year old', '%d years old', $age) : '',
|
2018-01-25 01:47:33 +00:00
|
|
|
'',
|
2020-01-18 19:52:34 +00:00
|
|
|
'placeholder="' . DI::l10n()->t('YYYY-MM-DD or MM-DD') . '"'
|
2018-01-25 01:47:33 +00:00
|
|
|
]
|
|
|
|
]);
|
|
|
|
|
|
|
|
return $o;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2020-01-19 06:05:23 +00:00
|
|
|
* Returns a date selector
|
2018-01-25 01:47:33 +00:00
|
|
|
*
|
2019-01-21 21:51:59 +00:00
|
|
|
* @param DateTime $min Minimum date
|
|
|
|
* @param DateTime $max Maximum date
|
|
|
|
* @param DateTime $default Default date
|
|
|
|
* @param string $id ID and name of datetimepicker (defaults to "datetimepicker")
|
2018-01-25 01:47:33 +00:00
|
|
|
*
|
|
|
|
* @return string Parsed HTML output.
|
2019-01-06 21:06:53 +00:00
|
|
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
2018-01-25 01:47:33 +00:00
|
|
|
*/
|
2022-08-18 20:05:00 +00:00
|
|
|
public static function getDateField(DateTime $min, DateTime $max, DateTime $default, string $id = 'datepicker'): string
|
2018-01-25 01:47:33 +00:00
|
|
|
{
|
2018-02-03 17:25:58 +00:00
|
|
|
return self::getDateTimeField($min, $max, $default, '', $id, true, false, '', '');
|
2018-01-25 01:47:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2020-01-19 06:05:23 +00:00
|
|
|
* Returns a time selector
|
2018-01-25 01:47:33 +00:00
|
|
|
*
|
|
|
|
* @param string $h Already selected hour
|
|
|
|
* @param string $m Already selected minute
|
|
|
|
* @param string $id ID and name of datetimepicker (defaults to "timepicker")
|
|
|
|
*
|
|
|
|
* @return string Parsed HTML output.
|
2019-01-06 21:06:53 +00:00
|
|
|
* @throws \Exception
|
2018-01-25 01:47:33 +00:00
|
|
|
*/
|
2022-08-18 20:05:00 +00:00
|
|
|
public static function getTimeField(string $h, string $m, string $id = 'timepicker'): string
|
2018-01-25 01:47:33 +00:00
|
|
|
{
|
2018-02-03 17:25:58 +00:00
|
|
|
return self::getDateTimeField(new DateTime(), new DateTime(), new DateTime("$h:$m"), '', $id, false, true);
|
2018-01-25 01:47:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2020-01-19 06:05:23 +00:00
|
|
|
* Returns a datetime selector.
|
2018-01-25 01:47:33 +00:00
|
|
|
*
|
2018-02-03 14:53:45 +00:00
|
|
|
* @param DateTime $minDate Minimum date
|
|
|
|
* @param DateTime $maxDate Maximum date
|
|
|
|
* @param DateTime $defaultDate Default date
|
2019-01-06 21:06:53 +00:00
|
|
|
* @param $label
|
2018-02-03 14:53:45 +00:00
|
|
|
* @param string $id Id and name of datetimepicker (defaults to "datetimepicker")
|
|
|
|
* @param bool $pickdate true to show date picker (default)
|
|
|
|
* @param bool $picktime true to show time picker (default)
|
|
|
|
* @param string $minfrom set minimum date from picker with id $minfrom (none by default)
|
|
|
|
* @param string $maxfrom set maximum date from picker with id $maxfrom (none by default)
|
|
|
|
* @param bool $required default false
|
2018-01-25 01:47:33 +00:00
|
|
|
*
|
|
|
|
* @return string Parsed HTML output.
|
|
|
|
*
|
2019-01-06 21:06:53 +00:00
|
|
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
|
|
|
* @todo Once browser support is better this could probably be replaced with
|
2018-01-25 01:47:33 +00:00
|
|
|
* native HTML5 date picker.
|
|
|
|
*/
|
2018-02-03 14:53:45 +00:00
|
|
|
public static function getDateTimeField(
|
|
|
|
DateTime $minDate,
|
|
|
|
DateTime $maxDate,
|
2021-08-01 13:01:31 +00:00
|
|
|
DateTime $defaultDate = null,
|
2018-02-03 14:53:45 +00:00
|
|
|
$label,
|
2022-08-18 20:05:00 +00:00
|
|
|
string $id = 'datetimepicker',
|
|
|
|
bool $pickdate = true,
|
|
|
|
bool $picktime = true,
|
|
|
|
string $minfrom = '',
|
|
|
|
string $maxfrom = '',
|
|
|
|
bool $required = false): string
|
2018-01-25 01:47:33 +00:00
|
|
|
{
|
|
|
|
// First day of the week (0 = Sunday)
|
2022-10-20 19:22:47 +00:00
|
|
|
$firstDay = DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'system', 'first_day_of_week', 0);
|
2018-01-25 01:47:33 +00:00
|
|
|
|
2020-01-18 19:55:41 +00:00
|
|
|
$lang = substr(DI::l10n()->getCurrentLang(), 0, 2);
|
2018-01-25 01:47:33 +00:00
|
|
|
|
|
|
|
// Check if the detected language is supported by the picker
|
|
|
|
if (!in_array($lang,
|
2022-08-18 20:05:00 +00:00
|
|
|
['ar', 'ro', 'id', 'bg', 'fa', 'ru', 'uk', 'en', 'el', 'de', 'nl', 'tr', 'fr', 'es', 'th', 'pl', 'pt', 'ch', 'se', 'kr',
|
|
|
|
'it', 'da', 'no', 'ja', 'vi', 'sl', 'cs', 'hu'])) {
|
2018-10-22 04:16:30 +00:00
|
|
|
$lang = 'en';
|
2018-01-25 01:47:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
$o = '';
|
|
|
|
$dateformat = '';
|
|
|
|
|
|
|
|
if ($pickdate) {
|
|
|
|
$dateformat .= 'Y-m-d';
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($pickdate && $picktime) {
|
|
|
|
$dateformat .= ' ';
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($picktime) {
|
|
|
|
$dateformat .= 'H:i';
|
|
|
|
}
|
|
|
|
|
2018-02-03 14:53:45 +00:00
|
|
|
$input_text = $defaultDate ? date($dateformat, $defaultDate->getTimestamp()) : '';
|
2018-01-25 01:47:33 +00:00
|
|
|
|
2018-02-03 14:53:45 +00:00
|
|
|
$readable_format = str_replace(['Y', 'm', 'd', 'H', 'i'], ['yyyy', 'mm', 'dd', 'HH', 'MM'], $dateformat);
|
2018-01-25 01:47:33 +00:00
|
|
|
|
2018-10-31 14:44:06 +00:00
|
|
|
$tpl = Renderer::getMarkupTemplate('field_datetime.tpl');
|
2018-10-31 14:35:50 +00:00
|
|
|
$o .= Renderer::replaceMacros($tpl, [
|
2018-01-25 01:47:33 +00:00
|
|
|
'$field' => [
|
|
|
|
$id,
|
|
|
|
$label,
|
|
|
|
$input_text,
|
2021-10-03 17:42:17 +00:00
|
|
|
DI::l10n()->t(
|
|
|
|
'Time zone: <strong>%s</strong> <a href="%s">Change in Settings</a>',
|
|
|
|
str_replace('_', ' ', DI::app()->getTimeZone()) . ' (GMT ' . DateTimeFormat::localNow('P') . ')',
|
|
|
|
DI::baseUrl() . '/settings'
|
|
|
|
),
|
2018-01-25 01:47:33 +00:00
|
|
|
$required ? '*' : '',
|
|
|
|
'placeholder="' . $readable_format . '"'
|
|
|
|
],
|
2018-02-03 14:53:45 +00:00
|
|
|
'$datetimepicker' => [
|
|
|
|
'minDate' => $minDate,
|
|
|
|
'maxDate' => $maxDate,
|
|
|
|
'defaultDate' => $defaultDate,
|
|
|
|
'dateformat' => $dateformat,
|
|
|
|
'firstDay' => $firstDay,
|
|
|
|
'lang' => $lang,
|
|
|
|
'minfrom' => $minfrom,
|
|
|
|
'maxfrom' => $maxfrom,
|
2021-10-03 17:42:17 +00:00
|
|
|
],
|
2018-01-25 01:47:33 +00:00
|
|
|
]);
|
|
|
|
|
|
|
|
return $o;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2020-01-19 06:05:23 +00:00
|
|
|
* Returns a relative date string.
|
2018-01-25 01:47:33 +00:00
|
|
|
*
|
|
|
|
* Implements "3 seconds ago" etc.
|
|
|
|
* Based on $posted_date, (UTC).
|
|
|
|
* Results relative to current timezone.
|
|
|
|
* Limited to range of timestamps.
|
|
|
|
*
|
|
|
|
* @param string $posted_date MySQL-formatted date string (YYYY-MM-DD HH:MM:SS)
|
|
|
|
* @param string $format (optional) Parsed with sprintf()
|
|
|
|
* <tt>%1$d %2$s ago</tt>, e.g. 22 hours ago, 1 minute ago
|
|
|
|
*
|
|
|
|
* @return string with relative date
|
|
|
|
*/
|
2022-10-18 16:20:08 +00:00
|
|
|
public static function getRelativeDate(string $posted_date = null, string $format = null): string
|
2018-01-25 01:47:33 +00:00
|
|
|
{
|
2022-10-18 16:20:08 +00:00
|
|
|
if (empty($posted_date) || $posted_date <= DBA::NULL_DATETIME) {
|
|
|
|
return DI::l10n()->t('never');
|
|
|
|
}
|
2018-01-25 01:47:33 +00:00
|
|
|
|
2022-10-18 16:20:08 +00:00
|
|
|
$localtime = $posted_date . ' UTC';
|
2018-01-25 01:47:33 +00:00
|
|
|
$abs = strtotime($localtime);
|
|
|
|
|
2022-10-18 16:20:08 +00:00
|
|
|
if ($abs === false) {
|
2020-01-18 19:52:34 +00:00
|
|
|
return DI::l10n()->t('never');
|
2018-01-25 01:47:33 +00:00
|
|
|
}
|
|
|
|
|
2018-10-14 20:57:44 +00:00
|
|
|
$isfuture = false;
|
2018-01-25 01:47:33 +00:00
|
|
|
$etime = time() - $abs;
|
|
|
|
|
2018-10-14 20:57:44 +00:00
|
|
|
if ($etime < 1 && $etime >= 0) {
|
2020-01-18 19:52:34 +00:00
|
|
|
return DI::l10n()->t('less than a second ago');
|
2018-01-25 01:47:33 +00:00
|
|
|
}
|
|
|
|
|
2018-10-14 20:57:44 +00:00
|
|
|
if ($etime < 0){
|
|
|
|
$etime = -$etime;
|
|
|
|
$isfuture = true;
|
|
|
|
}
|
|
|
|
|
2022-08-18 20:05:00 +00:00
|
|
|
$a = [
|
|
|
|
12 * 30 * 24 * 60 * 60 => [DI::l10n()->t('year'), DI::l10n()->t('years')],
|
2020-01-18 19:52:34 +00:00
|
|
|
30 * 24 * 60 * 60 => [DI::l10n()->t('month'), DI::l10n()->t('months')],
|
|
|
|
7 * 24 * 60 * 60 => [DI::l10n()->t('week'), DI::l10n()->t('weeks')],
|
|
|
|
24 * 60 * 60 => [DI::l10n()->t('day'), DI::l10n()->t('days')],
|
|
|
|
60 * 60 => [DI::l10n()->t('hour'), DI::l10n()->t('hours')],
|
|
|
|
60 => [DI::l10n()->t('minute'), DI::l10n()->t('minutes')],
|
2022-08-18 20:05:00 +00:00
|
|
|
1 => [DI::l10n()->t('second'), DI::l10n()->t('seconds')],
|
2018-01-25 01:47:33 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
foreach ($a as $secs => $str) {
|
|
|
|
$d = $etime / $secs;
|
|
|
|
if ($d >= 1) {
|
|
|
|
$r = round($d);
|
|
|
|
// translators - e.g. 22 hours ago, 1 minute ago
|
|
|
|
if (!$format) {
|
2018-10-14 20:57:44 +00:00
|
|
|
if($isfuture){
|
2020-01-18 19:52:34 +00:00
|
|
|
$format = DI::l10n()->t('in %1$d %2$s');
|
2018-10-14 20:57:44 +00:00
|
|
|
}
|
|
|
|
else {
|
2020-01-18 19:52:34 +00:00
|
|
|
$format = DI::l10n()->t('%1$d %2$s ago');
|
2018-10-14 20:57:44 +00:00
|
|
|
}
|
2018-01-25 01:47:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return sprintf($format, $r, (($r == 1) ? $str[0] : $str[1]));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2020-01-19 06:05:23 +00:00
|
|
|
* Returns timezone correct age in years.
|
2018-01-25 01:47:33 +00:00
|
|
|
*
|
2020-01-16 03:35:30 +00:00
|
|
|
* Returns the age in years, given a date of birth and the timezone of the person
|
|
|
|
* whose date of birth is provided.
|
2018-01-25 01:47:33 +00:00
|
|
|
*
|
2021-10-03 16:38:47 +00:00
|
|
|
* @param string $dob Date of Birth
|
|
|
|
* @param string $timezone Timezone of the person of interest
|
2018-01-25 01:47:33 +00:00
|
|
|
*
|
|
|
|
* @return int Age in years
|
2019-01-06 21:06:53 +00:00
|
|
|
* @throws \Exception
|
2018-01-25 01:47:33 +00:00
|
|
|
*/
|
2021-10-03 16:38:47 +00:00
|
|
|
public static function getAgeByTimezone(string $dob, string $timezone): int
|
2018-01-25 01:47:33 +00:00
|
|
|
{
|
|
|
|
if (!intval($dob)) {
|
|
|
|
return 0;
|
|
|
|
}
|
2020-01-16 03:35:30 +00:00
|
|
|
|
2021-10-03 16:38:47 +00:00
|
|
|
$birthdate = new DateTime($dob . ' 00:00:00', new DateTimeZone($timezone));
|
2020-01-16 03:35:30 +00:00
|
|
|
$currentDate = new DateTime('now', new DateTimeZone('UTC'));
|
2018-01-25 01:47:33 +00:00
|
|
|
|
2020-01-16 03:35:30 +00:00
|
|
|
$interval = $birthdate->diff($currentDate);
|
2018-01-25 01:47:33 +00:00
|
|
|
|
2021-01-31 03:47:20 +00:00
|
|
|
return (int) $interval->format('%y');
|
2018-01-25 01:47:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2020-01-19 06:05:23 +00:00
|
|
|
* Get days of a month in a given year.
|
2018-01-25 01:47:33 +00:00
|
|
|
*
|
|
|
|
* Returns number of days in the month of the given year.
|
|
|
|
* $m = 1 is 'January' to match human usage.
|
|
|
|
*
|
|
|
|
* @param int $y Year
|
|
|
|
* @param int $m Month (1=January, 12=December)
|
|
|
|
*
|
|
|
|
* @return int Number of days in the given month
|
|
|
|
*/
|
2022-08-18 20:05:00 +00:00
|
|
|
public static function getDaysInMonth(int $y, int $m): int
|
2018-01-25 01:47:33 +00:00
|
|
|
{
|
|
|
|
return date('t', mktime(0, 0, 0, $m, 1, $y));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2020-01-19 06:05:23 +00:00
|
|
|
* Returns the first day in month for a given month, year.
|
2018-01-25 01:47:33 +00:00
|
|
|
*
|
|
|
|
* Months start at 1.
|
|
|
|
*
|
|
|
|
* @param int $y Year
|
|
|
|
* @param int $m Month (1=January, 12=December)
|
|
|
|
*
|
|
|
|
* @return string day 0 = Sunday through 6 = Saturday
|
2019-01-06 21:06:53 +00:00
|
|
|
* @throws \Exception
|
2018-01-25 01:47:33 +00:00
|
|
|
*/
|
2022-08-18 20:05:00 +00:00
|
|
|
private static function getFirstDayInMonth(int $y, int $m): string
|
2018-01-25 01:47:33 +00:00
|
|
|
{
|
|
|
|
$d = sprintf('%04d-%02d-01 00:00', intval($y), intval($m));
|
|
|
|
|
2018-01-27 13:11:49 +00:00
|
|
|
return DateTimeFormat::utc($d, 'w');
|
2018-01-25 01:47:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2020-01-19 06:05:23 +00:00
|
|
|
* Output a calendar for the given month, year.
|
2018-01-25 01:47:33 +00:00
|
|
|
*
|
|
|
|
* If $links are provided (array), e.g. $links[12] => 'http://mylink' ,
|
|
|
|
* date 12 will be linked appropriately. Today's date is also noted by
|
|
|
|
* altering td class.
|
|
|
|
* Months count from 1.
|
|
|
|
*
|
2019-01-06 21:06:53 +00:00
|
|
|
* @param int $y Year
|
|
|
|
* @param int $m Month
|
2018-01-25 01:47:33 +00:00
|
|
|
* @param array $links (default null)
|
|
|
|
* @param string $class
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*
|
2019-01-06 21:06:53 +00:00
|
|
|
* @throws \Exception
|
|
|
|
* @todo Provide (prev, next) links, define class variations for different size calendars
|
2018-01-25 01:47:33 +00:00
|
|
|
*/
|
2022-08-18 20:05:00 +00:00
|
|
|
public static function getCalendarTable(int $y = 0, int $m = 0, array $links = null, string $class = ''): string
|
2018-01-25 01:47:33 +00:00
|
|
|
{
|
|
|
|
// month table - start at 1 to match human usage.
|
|
|
|
$mtab = [' ',
|
|
|
|
'January', 'February', 'March',
|
|
|
|
'April', 'May', 'June',
|
|
|
|
'July', 'August', 'September',
|
|
|
|
'October', 'November', 'December'
|
|
|
|
];
|
|
|
|
|
2018-01-27 13:11:49 +00:00
|
|
|
$thisyear = DateTimeFormat::localNow('Y');
|
|
|
|
$thismonth = DateTimeFormat::localNow('m');
|
2018-01-25 01:47:33 +00:00
|
|
|
if (!$y) {
|
|
|
|
$y = $thisyear;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!$m) {
|
|
|
|
$m = intval($thismonth);
|
|
|
|
}
|
|
|
|
|
|
|
|
$dn = ['Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday'];
|
2018-02-03 17:25:58 +00:00
|
|
|
$f = self::getFirstDayInMonth($y, $m);
|
|
|
|
$l = self::getDaysInMonth($y, $m);
|
2018-01-25 01:47:33 +00:00
|
|
|
$d = 1;
|
|
|
|
$dow = 0;
|
|
|
|
$started = false;
|
|
|
|
|
|
|
|
if (($y == $thisyear) && ($m == $thismonth)) {
|
2018-01-27 13:11:49 +00:00
|
|
|
$tddate = intval(DateTimeFormat::localNow('j'));
|
2018-01-25 01:47:33 +00:00
|
|
|
}
|
|
|
|
|
2020-01-18 19:54:46 +00:00
|
|
|
$str_month = DI::l10n()->getDay($mtab[$m]);
|
2018-01-25 01:47:33 +00:00
|
|
|
$o = '<table class="calendar' . $class . '">';
|
|
|
|
$o .= "<caption>$str_month $y</caption><tr>";
|
|
|
|
for ($a = 0; $a < 7; $a ++) {
|
2020-01-18 19:54:46 +00:00
|
|
|
$o .= '<th>' . mb_substr(DI::l10n()->getDay($dn[$a]), 0, 3, 'UTF-8') . '</th>';
|
2018-01-25 01:47:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
$o .= '</tr><tr>';
|
|
|
|
|
|
|
|
while ($d <= $l) {
|
|
|
|
if (($dow == $f) && (!$started)) {
|
|
|
|
$started = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
$today = (((isset($tddate)) && ($tddate == $d)) ? "class=\"today\" " : '');
|
|
|
|
$o .= "<td $today>";
|
|
|
|
$day = str_replace(' ', ' ', sprintf('%2.2d', $d));
|
|
|
|
if ($started) {
|
2018-11-30 14:06:22 +00:00
|
|
|
if (isset($links[$d])) {
|
2018-01-25 01:47:33 +00:00
|
|
|
$o .= "<a href=\"{$links[$d]}\">$day</a>";
|
|
|
|
} else {
|
|
|
|
$o .= $day;
|
|
|
|
}
|
|
|
|
|
|
|
|
$d ++;
|
|
|
|
} else {
|
|
|
|
$o .= ' ';
|
|
|
|
}
|
|
|
|
|
|
|
|
$o .= '</td>';
|
|
|
|
$dow ++;
|
|
|
|
if (($dow == 7) && ($d <= $l)) {
|
|
|
|
$dow = 0;
|
|
|
|
$o .= '</tr><tr>';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($dow) {
|
|
|
|
for ($a = $dow; $a < 7; $a ++) {
|
|
|
|
$o .= '<td> </td>';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$o .= '</tr></table>' . "\r\n";
|
|
|
|
|
|
|
|
return $o;
|
|
|
|
}
|
|
|
|
}
|