diff options
author | redmatrix <git@macgirvin.com> | 2016-03-12 16:47:11 -0800 |
---|---|---|
committer | redmatrix <git@macgirvin.com> | 2016-03-12 16:47:11 -0800 |
commit | 70ad69d38c53f78d04d912495f63c6fb781f0550 (patch) | |
tree | 19c7a8282113431e6a4e47a256925d2aef6fb66f /include | |
parent | cb0c43bc6805721cd298796aa028d96398122e7a (diff) | |
parent | 7efffbf102d7954a973816c75054bed7fdefebf6 (diff) | |
download | volse-hubzilla-70ad69d38c53f78d04d912495f63c6fb781f0550.tar.gz volse-hubzilla-70ad69d38c53f78d04d912495f63c6fb781f0550.tar.bz2 volse-hubzilla-70ad69d38c53f78d04d912495f63c6fb781f0550.zip |
Merge https://github.com/redmatrix/hubzilla into pending_merge
Diffstat (limited to 'include')
-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'); |