aboutsummaryrefslogtreecommitdiffstats
path: root/include/datetime.php
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2016-03-12 22:13:46 +0100
committerMario Vavti <mario@mariovavti.com>2016-03-12 22:13:46 +0100
commit2d8deb60826a12b5bbe6ac1a8c123796c201d6fd (patch)
tree59f032e68fc5ff7b7335d81ddab2f37984b1d1be /include/datetime.php
parent4e9440396cbff64e1ffbe3025a2e02baeb41f9c0 (diff)
downloadvolse-hubzilla-2d8deb60826a12b5bbe6ac1a8c123796c201d6fd.tar.gz
volse-hubzilla-2d8deb60826a12b5bbe6ac1a8c123796c201d6fd.tar.bz2
volse-hubzilla-2d8deb60826a12b5bbe6ac1a8c123796c201d6fd.zip
some janitor work on profiles
Diffstat (limited to 'include/datetime.php')
-rw-r--r--include/datetime.php12
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');