]> git.mxchange.org Git - friendica.git/blobdiff - src/Util/Temporal.php
New item field "Post-type" and new table "permissionset" (#5408)
[friendica.git] / src / Util / Temporal.php
index 311a750cfbdc448b7112cb4029139dc059fdd09b..46bd8bba50871deafc49449891feb330de8ebe70 100644 (file)
@@ -59,7 +59,7 @@ class Temporal
 
                $o = '<select id="timezone_select" name="timezone">';
 
-               usort($timezone_identifiers, [self, 'timezoneCompareCallback']);
+               usort($timezone_identifiers, [__CLASS__, 'timezoneCompareCallback']);
                $continent = '';
                foreach ($timezone_identifiers as $value) {
                        $ex = explode("/", $value);
@@ -127,6 +127,8 @@ class Temporal
         */
        public static function getDateofBirthField($dob)
        {
+               $a = get_app();
+
                list($year, $month, $day) = sscanf($dob, '%4d-%2d-%2d');
 
                if ($dob < '0000-01-01') {
@@ -135,7 +137,7 @@ class Temporal
                        $value = DateTimeFormat::utc(($year > 1000) ? $dob : '1000-' . $month . '-' . $day, 'Y-m-d');
                }
 
-               $age = (intval($value) ? age($value, $a->user["timezone"], $a->user["timezone"]) : "");
+               $age = (intval($value) ? self::getAgeByTimezone($value, $a->user["timezone"], $a->user["timezone"]) : "");
 
                $tpl = get_markup_template("field_input.tpl");
                $o = replace_macros($tpl,
@@ -165,7 +167,7 @@ class Temporal
         */
        public static function getDateField($min, $max, $default, $id = 'datepicker')
        {
-               return datetimesel($min, $max, $default, '', $id, true, false, '', '');
+               return self::getDateTimeField($min, $max, $default, '', $id, true, false, '', '');
        }
 
        /**
@@ -179,29 +181,38 @@ class Temporal
         */
        public static function getTimeField($h, $m, $id = 'timepicker')
        {
-               return datetimesel(new DateTime(), new DateTime(), new DateTime("$h:$m"), '', $id, false, true);
+               return self::getDateTimeField(new DateTime(), new DateTime(), new DateTime("$h:$m"), '', $id, false, true);
        }
 
        /**
         * @brief Returns a datetime selector.
         *
-        * @param string $min      Unix timestamp of minimum date
-        * @param string $max      Unix timestamp of maximum date
-        * @param string $default  Unix timestamp of default date
-        * @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
+        * @param DateTime $minDate     Minimum date
+        * @param DateTime $maxDate     Maximum date
+        * @param DateTime $defaultDate Default date
+        * @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
         *
         * @return string Parsed HTML output.
         *
         * @todo Once browser support is better this could probably be replaced with
         * native HTML5 date picker.
         */
-       public static function getDateTimeField($min, $max, $default, $label, $id = 'datetimepicker', $pickdate = true,
-               $picktime = true, $minfrom = '', $maxfrom = '', $required = false)
+       public static function getDateTimeField(
+               DateTime $minDate,
+               DateTime $maxDate,
+               DateTime $defaultDate,
+               $label,
+               $id       = 'datetimepicker',
+               $pickdate = true,
+               $picktime = true,
+               $minfrom  = '',
+               $maxfrom  = '',
+               $required = false)
        {
                // First day of the week (0 = Sunday)
                $firstDay = PConfig::get(local_user(), 'system', 'first_day_of_week', 0);
@@ -230,41 +241,12 @@ class Temporal
                        $dateformat .= 'H:i';
                }
 
-               $minjs = $min ? ",minDate: new Date({$min->getTimestamp()}*1000), yearStart: " . $min->format('Y') : '';
-               $maxjs = $max ? ",maxDate: new Date({$max->getTimestamp()}*1000), yearEnd: " . $max->format('Y') : '';
-
-               $input_text = $default ? date($dateformat, $default->getTimestamp()) : '';
-               $defaultdatejs = $default ? ",defaultDate: new Date({$default->getTimestamp()}*1000)" : '';
-
-               $pickers = '';
-               if (!$pickdate) {
-                       $pickers .= ', datepicker: false';
-               }
+               $input_text = $defaultDate ? date($dateformat, $defaultDate->getTimestamp()) : '';
 
-               if (!$picktime) {
-                       $pickers .= ',timepicker: false';
-               }
-
-               $extra_js = '';
-               $pickers .= ",dayOfWeekStart: " . $firstDay . ",lang:'" . $lang . "'";
-               if ($minfrom != '') {
-                       $extra_js .= "\$('#id_$minfrom').data('xdsoft_datetimepicker').setOptions({onChangeDateTime: function (currentDateTime) { \$('#id_$id').data('xdsoft_datetimepicker').setOptions({minDate: currentDateTime})}})";
-               }
+               $readable_format = str_replace(['Y', 'm', 'd', 'H', 'i'], ['yyyy', 'mm', 'dd', 'HH', 'MM'], $dateformat);
 
-               if ($maxfrom != '') {
-                       $extra_js .= "\$('#id_$maxfrom').data('xdsoft_datetimepicker').setOptions({onChangeDateTime: function (currentDateTime) { \$('#id_$id').data('xdsoft_datetimepicker').setOptions({maxDate: currentDateTime})}})";
-               }
-
-               $readable_format = $dateformat;
-               $readable_format = str_replace('Y', 'yyyy', $readable_format);
-               $readable_format = str_replace('m', 'mm', $readable_format);
-               $readable_format = str_replace('d', 'dd', $readable_format);
-               $readable_format = str_replace('H', 'HH', $readable_format);
-               $readable_format = str_replace('i', 'MM', $readable_format);
-
-               $tpl = get_markup_template('field_input.tpl');
-               $o .= replace_macros($tpl,
-                       [
+               $tpl = get_markup_template('field_datetime.tpl');
+               $o .= replace_macros($tpl, [
                        '$field' => [
                                $id,
                                $label,
@@ -273,12 +255,18 @@ class Temporal
                                $required ? '*' : '',
                                'placeholder="' . $readable_format . '"'
                        ],
+                       '$datetimepicker' => [
+                               'minDate' => $minDate,
+                               'maxDate' => $maxDate,
+                               'defaultDate' => $defaultDate,
+                               'dateformat' => $dateformat,
+                               'firstDay' => $firstDay,
+                               'lang' => $lang,
+                               'minfrom' => $minfrom,
+                               'maxfrom' => $maxfrom,
+                       ]
                ]);
 
-               $o .= "<script type='text/javascript'>";
-               $o .= "\$(function () {var picker = \$('#id_$id').datetimepicker({step:5,format:'$dateformat' $minjs $maxjs $pickers $defaultdatejs}); $extra_js})";
-               $o .= "</script>";
-
                return $o;
        }
 
@@ -395,7 +383,6 @@ class Temporal
        public static function getDaysInMonth($y, $m)
        {
                return date('t', mktime(0, 0, 0, $m, 1, $y));
-               ;
        }
 
        /**
@@ -408,7 +395,7 @@ class Temporal
         *
         * @return string day 0 = Sunday through 6 = Saturday
         */
-       public static function getFirstDayInMonth($y, $m)
+       private static function getFirstDayInMonth($y, $m)
        {
                $d = sprintf('%04d-%02d-01 00:00', intval($y), intval($m));
 
@@ -453,8 +440,8 @@ class Temporal
                }
 
                $dn = ['Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday'];
-               $f = get_first_dim($y, $m);
-               $l = get_dim($y, $m);
+               $f = self::getFirstDayInMonth($y, $m);
+               $l = self::getDaysInMonth($y, $m);
                $d = 1;
                $dow = 0;
                $started = false;