2010-07-02 01:48:07 +02:00
|
|
|
<?php
|
2016-02-03 19:48:09 +01:00
|
|
|
/**
|
|
|
|
* @file include/datetime.php
|
|
|
|
* @brief Some functions for date and time related tasks.
|
|
|
|
*/
|
2010-07-02 01:48:07 +02:00
|
|
|
|
2018-01-25 02:47:33 +01:00
|
|
|
use Friendica\Model\Contact;
|
|
|
|
use Friendica\Util\Temporal;
|
2010-09-27 09:38:26 +02:00
|
|
|
|
2018-01-25 02:47:33 +01:00
|
|
|
function dob($dob) {
|
|
|
|
return Temporal::getDateofBirthField($dob);
|
2011-07-26 05:59:25 +02:00
|
|
|
}
|
|
|
|
|
2018-01-25 02:47:33 +01:00
|
|
|
function datesel($min, $max, $default, $id = 'datepicker') {
|
|
|
|
return Temporal::getDateField($min, $max, $default, $id);
|
2016-02-03 19:48:09 +01:00
|
|
|
}
|
2010-07-02 01:48:07 +02:00
|
|
|
|
2018-01-25 02:47:33 +01:00
|
|
|
function timesel($h, $m, $id = 'timepicker') {
|
|
|
|
return Temporal::getTimeField($h, $m, $id);
|
2016-02-03 19:48:09 +01:00
|
|
|
}
|
2011-06-07 04:59:20 +02:00
|
|
|
|
2018-01-25 02:47:33 +01:00
|
|
|
function datetimesel($min, $max, $default, $label, $id = 'datetimepicker', $pickdate = true, $picktime = true, $minfrom = '', $maxfrom = '', $required = false) {
|
|
|
|
return Temporal::getDateTimeField($min, $max, $default, $label, $id, $pickdate, $picktime, $minfrom, $maxfrom, $required);
|
2016-02-03 19:48:09 +01:00
|
|
|
}
|
2010-07-02 01:48:07 +02:00
|
|
|
|
2016-10-28 11:54:26 +02:00
|
|
|
function relative_date($posted_date, $format = null) {
|
2018-01-25 02:47:33 +01:00
|
|
|
return Temporal::getRelativeDate($posted_date, $format);
|
2016-02-03 19:48:09 +01:00
|
|
|
}
|
2010-09-27 09:38:26 +02:00
|
|
|
|
2017-04-04 19:47:32 +02:00
|
|
|
function age($dob, $owner_tz = '', $viewer_tz = '') {
|
2018-01-25 02:47:33 +01:00
|
|
|
return Temporal::getAgeByTimezone($dob, $owner_tz, $viewer_tz);
|
2010-07-10 07:47:32 +02:00
|
|
|
}
|
2011-02-23 05:08:15 +01:00
|
|
|
|
2017-04-04 19:47:32 +02:00
|
|
|
function get_dim($y, $m) {
|
2018-01-25 02:47:33 +01:00
|
|
|
return Temporal::getDaysInMonth($y, $m);
|
2016-02-03 19:48:09 +01:00
|
|
|
}
|
2011-02-23 05:08:15 +01:00
|
|
|
|
2016-02-03 19:48:09 +01:00
|
|
|
function get_first_dim($y,$m) {
|
2018-01-25 02:47:33 +01:00
|
|
|
return Temporal::getFirstDayInMonth($y, $m);
|
2016-02-03 19:48:09 +01:00
|
|
|
}
|
2011-02-23 05:08:15 +01:00
|
|
|
|
2018-01-05 01:42:48 +01:00
|
|
|
function cal($y = 0, $m = 0, $links = null, $class = '')
|
|
|
|
{
|
2018-01-25 02:47:33 +01:00
|
|
|
return Temporal::getCalendarTable($y, $m, $links, $class);
|
2016-02-03 19:48:09 +01:00
|
|
|
}
|
|
|
|
|
2011-10-14 09:20:37 +02:00
|
|
|
function update_contact_birthdays() {
|
2018-01-25 02:47:33 +01:00
|
|
|
return Contact::updateBirthdays();
|
2012-01-02 20:09:25 +01:00
|
|
|
}
|