diff options
author | jeroenpraat <jeroenpraat@xs4all.nl> | 2016-03-14 15:46:57 +0100 |
---|---|---|
committer | jeroenpraat <jeroenpraat@xs4all.nl> | 2016-03-14 15:46:57 +0100 |
commit | b8e8517725df6924c333e0c2c7c21a2696de4f25 (patch) | |
tree | 16851e62950a75f043756f8d59183937831bc104 /include/datetime.php | |
parent | def04549529d34c6fbe9c7a2396dad7909859953 (diff) | |
parent | 2f5862713e2fb959134c2de23ca4ef9907912030 (diff) | |
download | volse-hubzilla-b8e8517725df6924c333e0c2c7c21a2696de4f25.tar.gz volse-hubzilla-b8e8517725df6924c333e0c2c7c21a2696de4f25.tar.bz2 volse-hubzilla-b8e8517725df6924c333e0c2c7c21a2696de4f25.zip |
Merge branch 'master' of https://github.com/redmatrix/hubzilla
Diffstat (limited to 'include/datetime.php')
-rw-r--r-- | include/datetime.php | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/include/datetime.php b/include/datetime.php index 57b2b6d37..8ee70a6fa 100644 --- a/include/datetime.php +++ b/include/datetime.php @@ -119,6 +119,8 @@ function datetime_convert($from = 'UTC', $to = 'UTC', $s = 'now', $fmt = "Y-m-d * @return string */ function dob($dob) { + $a = get_app(); + list($year, $month, $day) = sscanf($dob, '%4d-%2d-%2d'); $f = get_config('system', 'birthday_input_format'); if (! $f) @@ -129,7 +131,15 @@ function dob($dob) { else $value = (($year) ? datetime_convert('UTC','UTC',$dob,'Y-m-d') : datetime_convert('UTC','UTC',$dob,'m-d')); - $o = '<input class="form-control" type="text" name="dob" value="' . $value . '" placeholder="' . t('YYYY-MM-DD or MM-DD') . '" />'; + $o = replace_macros(get_markup_template("field_input.tpl"), array('$field' => array( + 'dob', + t('Birthday'), + $value, + ((intval($value)) ? t('Age: ') . age($value,$a->user['timezone'],$a->user['timezone']) : ''), + '', + 'placeholder="' . t('YYYY-MM-DD or MM-DD') .'"' + ))); + // if ($dob && $dob != '0000-00-00') // $o = datesel($f,mktime(0,0,0,0,0,1900),mktime(),mktime(0,0,0,$month,$day,$year),'dob'); |